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:43IhebIhebScore: 57,867Success
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:4357,5363,641,781,9533,279,555,6460267,784,192
2Jan 30, 2024 09:4357,8673,847,422,7203,298,402,4450268,054,528
3Jan 30, 2024 09:4360,1663,764,946,4133,429,455,9790267,644,928