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:47Alexander FrolovAlexander FrolovScore: 7,253Success
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:477,147955,238,016407,375,7450265,158,656
2Dec 28, 2023 09:477,253953,293,245413,414,1640265,494,528
3Dec 28, 2023 09:477,3151,028,868,490416,976,9350262,336,512