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:22olliecrowolliecrowError
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:230182,075,238133,919,00019,949,000241,061,888line 28899328: expected Buzz got EOF
2May 4, 2026 22:230178,116,332135,167,00020,878,000243,789,824line 29229056: expected 114007861 got EOF
3May 4, 2026 22:230171,388,292134,001,00020,967,000242,819,072line 29128704: expected 1244485219 got EOF