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 25, 2023 15:32Yuriy LyfenkoYuriy LyfenkoScore: 7,991Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 25, 2023 15:327,367953,409,640419,909,2050265,068,544
2Dec 25, 2023 15:327,9911,865,034,407455,501,4910264,634,368
3Dec 25, 2023 15:328,0221,543,294,731457,248,7040264,540,160