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 listApr 15, 2026 05:55olliecrowolliecrowScore: 7,377Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 15, 2026 05:557,372445,506,793401,222,00018,963,000250,306,560
2Apr 15, 2026 05:557,377445,172,050399,537,00020,975,000250,040,320
3Apr 15, 2026 05:557,378448,062,915399,579,00020,977,000250,060,800