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 10:00C#_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 10:020502,885,107371,293,00099,300,000233,627,648line 3: expected 3473821393 got 4337283139
2Aug 28, 2026 10:020502,155,860371,274,00099,482,000233,664,512line 0: expected 2078095448 got 0287904584
3Aug 28, 2026 10:020504,416,998371,374,00099,960,000233,742,336line 1: expected 386002543 got 368005234