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 listNov 29, 2022 06:44Andrey TsvetkovAndrey TsvetkovScore: 14,385Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 29, 2022 06:4414,0761,605,462,282802,359,6890257,548,288
2Nov 29, 2022 06:4414,3851,434,054,320819,931,5980255,721,472
3Nov 29, 2022 06:4414,4431,502,842,677823,273,4240254,734,336