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 20, 2026 15:57limanjun99limanjun99Score: 4,630Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 20, 2026 15:574,629296,537,758241,955,00021,905,000250,052,608
2Mar 20, 2026 15:574,630285,757,646246,890,00016,992,000250,290,176
3Mar 20, 2026 15:574,634300,774,967248,109,00016,007,000250,048,512