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 11, 2023 23:07Bohdan StorozhukBohdan StorozhukScore: 14,760Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 11, 2023 23:0714,7271,310,073,111839,426,8470266,809,344
2Dec 11, 2023 23:0714,7601,310,086,371841,316,7820266,301,440
3Dec 11, 2023 23:0714,7921,241,123,775843,116,2340265,670,656