Fizz Buzz Sergey Svistunov

Perform FizzBuzz on a stream of binary integers as fast as possible.

Input: 30 000 000 uint32 values in little-endian binary on STDIN (4 bytes each).

Output: For each number n, print one line:

  • FizzBuzz if n is divisible by both 3 and 5
  • Fizz if n is divisible by 3
  • Buzz if n is divisible by 5
  • n as a decimal string otherwise
Back to listMay 4, 2026 22:57olliecrowolliecrowError
Source Code

Source code access is restricted. Log in to request access.

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 4, 2026 22:580163,541,068127,022,00017,770,000210,284,544line 25198592: expected 2689501181 got EOF
2May 4, 2026 22:580163,749,627127,105,00017,645,000210,522,112line 25229312: expected 1471114664 got EOF
3May 4, 2026 22:580162,836,736125,708,00017,527,000208,363,520line 24969216: expected Buzz got EOF