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 5, 2026 08:04Taylor DettlingTaylor DettlingScore: 3,510Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 5, 2026 08:043,509225,475,983179,136,00020,899,000250,130,432
2Apr 5, 2026 08:043,510221,684,711182,166,00017,918,000250,068,992
3Apr 5, 2026 08:043,519229,261,445179,639,00020,957,000250,122,240