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 24, 2023 16:09Oleg KovalovOleg KovalovScore: 8,753Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 24, 2023 16:098,6711,136,150,575494,257,9920265,904,128
2Dec 24, 2023 16:098,7531,075,471,394498,907,2120264,773,632
3Dec 24, 2023 16:098,8111,283,670,810502,231,1020264,146,944