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 15:45Bohdan StorozhukBohdan StorozhukScore: 9,041Success
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 15:458,949794,038,827510,074,6810264,417,280
2Jan 2, 2024 15:459,041839,643,357515,313,1230264,269,824
3Jan 2, 2024 15:459,046836,034,916515,607,8950262,901,760