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 20, 2026 16:11limanjun99limanjun99Score: 5,204Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 20, 2026 16:115,198325,484,619274,345,00021,947,000250,281,984
2Mar 20, 2026 16:115,204324,388,096273,678,00022,972,000250,036,224
3Mar 20, 2026 16:115,205323,173,426275,715,00020,978,000250,056,704