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 26, 2023 00:47Vitaliy F.Vitaliy F.Score: 20,370Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 26, 2023 00:4720,3281,830,029,4571,158,722,3170260,886,528
2Dec 26, 2023 00:4720,3702,097,608,7651,161,085,4140260,198,400
3Dec 26, 2023 00:4720,4141,869,644,3231,163,593,3930262,823,936