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 25, 2023 09:46Oleg KovalovOleg KovalovScore: 8,850Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 25, 2023 09:468,762999,025,814499,410,5690266,690,560
2Dec 25, 2023 09:468,8501,271,685,446504,438,4030265,822,208
3Dec 25, 2023 09:468,8561,789,186,495504,817,3590265,564,160