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 27, 2022 08:20Andrey TsvetkovAndrey TsvetkovScore: 14,536Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 27, 2022 08:2014,4701,335,200,074824,804,4670266,375,168
2Nov 27, 2022 08:2014,5361,411,510,980828,546,3780264,933,376
3Nov 27, 2022 08:2014,6041,500,970,641832,429,9470265,150,464