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:32Oleg KovalovOleg KovalovScore: 9,198Success
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:329,144922,318,080521,216,5070265,723,904
2Dec 24, 2023 16:329,1981,001,930,393524,264,0410263,909,376
3Dec 24, 2023 16:329,2041,005,524,956524,652,4020265,879,552