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 9, 2026 02:16Taylor DettlingTaylor DettlingScore: 2,996Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 9, 2026 02:162,990197,544,467148,479,00021,923,000250,056,704
2Apr 9, 2026 02:162,996196,809,037149,797,00020,971,000250,048,512
3Apr 9, 2026 02:162,998196,202,937149,889,00020,984,000250,028,032