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 listDec 28, 2023 09:57Alexander FrolovAlexander FrolovScore: 7,234Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 28, 2023 09:577,218958,153,313411,431,8130263,364,608
2Dec 28, 2023 09:577,234962,339,498412,364,0750262,582,272
3Dec 28, 2023 09:577,347986,744,240418,756,6620264,540,160