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 12, 2026 03:32olliecrowolliecrowScore: 3,766Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 12, 2026 03:323,760244,550,031195,405,00018,942,000250,126,336
2Mar 12, 2026 03:323,766245,648,153195,691,00018,970,000250,142,720
3Mar 12, 2026 03:323,772239,148,952192,986,00021,998,000250,134,528