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 17, 2026 07:56marko1597marko1597Error
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 17, 2026 07:5809,742,85001,555,0002,166,784line 0: expected 3123491402 got two-file-ok
2Aug 17, 2026 07:58019,646,95601,648,0002,166,784line 0: expected 58805437 got two-file-ok
3Aug 17, 2026 07:58010,214,80801,533,0002,166,784line 0: expected 3437842372 got two-file-ok