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 11, 2023 00:14Benjamin YoungBenjamin YoungScore: 35,473Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 11, 2023 00:1435,4703,223,519,1382,021,777,8520267,649,024
2Jan 11, 2023 00:1435,4733,380,336,8682,021,968,3290266,817,536
3Jan 11, 2023 00:1435,7313,312,212,8802,036,665,1690268,054,528