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 30, 2024 09:34IhebIhebScore: 27,670Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 30, 2024 09:3427,6431,894,321,8431,575,667,2470267,743,232
2Jan 30, 2024 09:3427,6701,885,077,1191,577,202,3490264,507,392
3Jan 30, 2024 09:3427,8671,923,892,5511,588,435,7630267,603,968