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 listJul 23, 2024 14:30DanielDanielScore: 18,018Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jul 23, 2024 14:3017,5734,096,539,4911,001,668,7910134,877,184
2Jul 23, 2024 14:3018,0184,165,514,9061,027,017,0510134,963,200
3Jul 23, 2024 14:3018,0414,208,538,5851,028,348,5910134,914,048