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 28, 2023 09:30Alexander FrolovAlexander FrolovScore: 9,403Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 28, 2023 09:309,3131,067,734,109530,864,9480264,753,152
2Dec 28, 2023 09:309,4031,151,215,196535,966,9500262,742,016
3Dec 28, 2023 09:309,4111,323,616,700536,437,4700265,101,312