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 5, 2026 01:59olliecrowolliecrowScore: 4,547Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 5, 2026 01:594,545283,561,232237,035,00022,003,000250,273,792
2Mar 5, 2026 01:594,547287,900,071236,244,00022,926,000250,064,896
3Mar 5, 2026 01:594,554286,673,090238,623,00020,966,000250,277,888