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 listApr 24, 2024 13:00Kyle WangKyle WangScore: 30,694Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 24, 2024 13:0030,6942,064,844,4231,749,566,5730268,070,912
2Apr 24, 2024 13:0030,6942,065,493,7641,749,572,0810266,346,496
3Apr 24, 2024 13:0030,7292,053,793,4691,751,556,1990264,540,160