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 15, 2023 09:02Oleg KovalovOleg KovalovScore: 9,194Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 15, 2023 09:029,1891,050,280,191523,763,2630260,509,696
2Dec 15, 2023 09:029,1941,080,933,221524,080,0530260,644,864
3Dec 15, 2023 09:029,2351,261,281,810526,415,1280259,338,240