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 24, 2025 19:46Mikhail ShirokovMikhail ShirokovScore: 23,717Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 24, 2025 19:4623,4795,056,394,498535,331,000802,997,000101,625,856
2Jan 24, 2025 19:4623,7174,323,570,836530,269,000821,615,000101,617,664
3Jan 24, 2025 19:4623,7564,343,819,641549,084,000804,987,000101,519,360