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 14, 2023 07:25Evgeniy KhaluevEvgeniy KhaluevScore: 16,709Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 14, 2023 07:2516,5481,885,743,149943,255,0580209,256,448
2Dec 14, 2023 07:2516,7091,968,138,897952,429,0990209,965,056
3Dec 14, 2023 07:2516,7702,264,238,400955,915,6350211,984,384