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 listApr 23, 2024 22:23Joad NacerJoad NacerScore: 11,277Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Apr 23, 2024 22:2311,2611,157,141,649641,857,9150267,730,944
2Apr 23, 2024 22:2311,2771,197,103,231642,795,9270267,657,216
3Apr 23, 2024 22:2311,3851,200,565,367648,947,3840267,689,984