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 listMar 19, 2026 04:45Dominique GarmierDominique GarmierScore: 16,976Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 19, 2026 04:4516,4303,214,730,449287,698,000648,810,00081,866,752
2Mar 19, 2026 04:4516,9762,981,518,947287,005,000680,612,00081,555,456
3Mar 19, 2026 04:4517,2413,119,592,551288,546,000694,185,00079,769,600