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 listNov 19, 2025 01:46izotoffizotoffScore: 48,888Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 19, 2025 01:4648,8025,805,619,4631,941,496,000840,227,00083,472,384
2Nov 19, 2025 01:4648,8885,879,392,2171,900,834,000885,787,00082,997,248
3Nov 19, 2025 01:4649,2155,935,356,6181,935,446,000869,829,00083,161,088