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 listAug 15, 2026 11:27Tomislav TunkovicTomislav TunkovicError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 15, 2026 11:270179,444,141139,501,00031,749,0002,121,728line 0: expected 3611332664 got 0stderr
2Aug 15, 2026 11:270179,570,295140,153,00031,097,0002,121,728line 0: expected 3465759359 got 0stderr
3Aug 15, 2026 11:270179,383,129140,035,00030,957,0002,121,728line 0: expected 2156241571 got 0stderr