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 listDec 26, 2023 00:06Vitaliy F.Vitaliy F.Score: 21,246Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 26, 2023 00:0621,1752,176,792,1381,206,948,7540260,206,592
2Dec 26, 2023 00:0621,2461,771,862,9881,211,044,0440262,668,288
3Dec 26, 2023 00:0621,3252,197,474,5371,215,537,1920259,624,960