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 listMar 22, 2026 12:47Dominique GarmierDominique GarmierScore: 6,591Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Mar 22, 2026 12:476,586399,222,977328,488,00046,926,000251,850,752
2Mar 22, 2026 12:476,591402,960,609330,705,00044,959,000251,867,136
3Mar 22, 2026 12:476,607410,299,148332,647,00043,953,000252,088,320