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 listJan 30, 2024 10:09IhebIhebScore: 27,678Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 30, 2024 10:0927,6321,892,362,0131,575,009,1570267,767,808
2Jan 30, 2024 10:0927,6781,880,395,4421,577,657,3310265,183,232
3Jan 30, 2024 10:0927,8922,156,108,3531,589,857,0880268,050,432