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 28, 2026 07:28C#_userC#_userError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 28, 2026 07:29063,767,76635,667,00018,383,00016,883,712line 2014688: expected 1149835033 got EOFstderr
2Aug 28, 2026 07:29062,590,43035,936,00017,034,00016,834,560line 2014363: expected Buzz got EOFstderr
3Aug 28, 2026 07:29062,255,24335,961,00016,697,00016,834,560line 2014617: expected 243039796 got EOFstderr