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:29Tomislav 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:290222,031,694181,723,00031,887,0002,121,728line 0: expected Fizz got 0stderr
2Aug 15, 2026 11:290222,077,340182,301,00031,241,0002,121,728line 0: expected 3801450916 got 0stderr
3Aug 15, 2026 11:290222,725,792181,808,00032,476,0002,121,728line 0: expected FizzBuzz got 0stderr