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:18Kenneth MaplesKenneth MaplesScore: 429,923Success
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:18405,34024,390,254,60023,104,393,9620268,050,432
2Nov 27, 2022 20:18429,92324,990,508,50824,505,595,6620267,231,232
3Nov 27, 2022 20:18433,94125,931,148,14224,734,613,0830268,058,624