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 10, 2023 17:13Benjamin YoungBenjamin YoungScore: 426,913Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 10, 2023 17:13426,85624,784,316,48224,330,797,8430264,667,136
2Jan 10, 2023 17:13426,91324,725,109,56024,334,036,6330268,107,776
3Jan 10, 2023 17:13429,14024,941,112,30324,460,985,5750264,822,784