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 listNov 28, 2022 02:58Yuriy LyfenkoYuriy LyfenkoScore: 12,535Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 28, 2022 02:5812,3761,282,065,642705,432,1210266,366,976
2Nov 28, 2022 02:5812,5351,705,141,990714,490,0420265,379,840
3Nov 28, 2022 02:5813,0911,391,278,363746,201,5330265,617,408