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 23, 2024 12:33AnSaAnSaScore: 12,827Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 23, 2024 12:3312,6571,108,405,155721,451,8900267,853,824
2Jan 23, 2024 12:3312,8271,150,208,964731,144,1520267,771,904
3Jan 23, 2024 12:3313,3561,249,285,336761,311,4690267,718,656