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 21, 2023 12:35Franek KortaFranek KortaScore: 27,974Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 21, 2023 12:3527,9682,869,357,9871,594,178,0430267,870,208
2Nov 21, 2023 12:3527,9742,871,327,6971,594,517,0590265,072,640
3Nov 21, 2023 12:3528,3672,999,297,9951,616,924,9270267,976,704