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:19apuxbtapuxbtScore: 11,887Success
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:1911,8452,174,167,795675,152,6110210,661,376
2Nov 29, 2022 06:1911,8872,112,617,761677,547,6850208,117,760
3Nov 29, 2022 06:1912,1502,569,477,076692,576,3330206,295,040