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 listMay 31, 2025 16:49KeefeKeefeScore: 7,490Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1May 31, 2025 16:497,481458,273,262401,463,00024,966,000250,044,416
2May 31, 2025 16:497,490456,327,297403,969,00022,941,000250,028,032
3May 31, 2025 16:497,498452,929,281403,412,00023,965,000250,048,512