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 15, 2023 09:05Oleg KovalovOleg KovalovScore: 10,012Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 15, 2023 09:059,9961,147,896,490569,774,6750261,795,840
2Dec 15, 2023 09:0510,0121,228,511,208570,706,5560258,473,984
3Dec 15, 2023 09:0510,0731,227,099,610574,171,8120258,629,632