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 listJan 2, 2024 16:48Bohdan StorozhukBohdan StorozhukScore: 9,294Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 2, 2024 16:489,247816,507,264527,088,2970266,629,120
2Jan 2, 2024 16:489,294810,399,012529,734,2100265,969,664
3Jan 2, 2024 16:489,342818,586,463532,497,9290266,891,264