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 listDec 14, 2023 23:46Vadim AlekseevVadim AlekseevScore: 9,577Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 14, 2023 23:469,553970,102,246544,542,8250261,070,848
2Dec 14, 2023 23:469,577985,729,401545,868,9310263,696,384
3Dec 14, 2023 23:469,5931,010,775,666546,784,8010263,163,904