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 listJun 21, 2026 16:35A_ShamanA_ShamanError
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jun 21, 2026 16:360501,941,218415,224,00077,268,000249,880,576line 0: expected 1139529416 got Fizz
2Jun 21, 2026 16:360503,150,380415,496,00078,418,000249,876,480line 1: expected 3090738709 got Fizz
3Jun 21, 2026 16:360502,038,112414,437,00077,943,000249,921,536line 0: expected Fizz got Buzz