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 listFeb 6, 2026 03:22Josu San MartinJosu San MartinScore: 4,052Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Feb 6, 2026 03:224,052255,178,733162,253,00068,683,000249,290,752
2Feb 6, 2026 03:224,052257,798,601166,263,00064,713,000249,298,944
3Feb 6, 2026 03:224,056264,285,247162,429,00068,758,000249,536,512