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:52olliecrowolliecrowError
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:530189,137,455151,701,00020,756,000247,250,944line 29638656: expected 3094474937 got EOF
2May 4, 2026 22:533,093191,691,345154,782,00021,545,000250,302,464
3May 4, 2026 22:533,099193,961,928155,689,00020,966,000250,265,600