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 listSep 27, 2023 20:50apuxbtapuxbtScore: 9,403Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Sep 27, 2023 20:509,3331,842,453,678531,986,8560267,509,760
2Sep 27, 2023 20:509,4031,794,059,773535,978,1580264,011,776
3Sep 27, 2023 20:509,4581,779,672,463539,089,9190267,255,808