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 12, 2023 07:27Bohdan StorozhukBohdan StorozhukScore: 8,841Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 12, 2023 07:278,834916,545,282503,543,3900266,706,944
2Dec 12, 2023 07:278,841913,549,937503,952,7790267,456,512
3Dec 12, 2023 07:278,879962,987,937506,099,7280263,942,144