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 24, 2023 15:53Oleg KovalovOleg KovalovScore: 8,949Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 24, 2023 15:538,8141,047,676,818502,417,8480265,576,448
2Dec 24, 2023 15:538,9491,048,591,426510,071,3210264,577,024
3Dec 24, 2023 15:539,0421,097,321,279515,378,9570263,753,728