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 listNov 28, 2022 03:50apuxbtapuxbtScore: 60,560Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 28, 2022 03:5060,3914,287,699,7033,442,265,3320211,021,824
2Nov 28, 2022 03:5060,5604,293,291,8913,451,937,8330208,801,792
3Nov 28, 2022 03:5060,5774,396,873,7863,452,915,8580209,100,800