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 14, 2023 12:43Bohdan StorozhukBohdan StorozhukScore: 8,195Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 14, 2023 12:438,148866,474,066464,445,9740265,990,144
2Dec 14, 2023 12:438,195861,583,453467,088,1900264,040,448
3Dec 14, 2023 12:438,2201,171,765,104468,533,4330266,952,704