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 26, 2022 23:18AmirAmirScore: 33,983Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 26, 2022 23:1833,5982,803,920,0891,915,107,7480265,465,856
2Nov 26, 2022 23:1833,9832,572,824,1921,937,054,9180267,808,768
3Nov 26, 2022 23:1836,4412,755,192,6612,077,129,2790265,068,544