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 20:23apuxbtapuxbtScore: 31,191Success
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 20:2330,5443,355,066,4391,741,020,8750167,387,136
2Nov 27, 2022 20:2331,1913,829,617,4021,777,896,9040160,190,464
3Nov 27, 2022 20:2331,2253,512,785,6241,779,843,8040162,246,656