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 listDec 21, 2023 21:31Alexander FrolovAlexander FrolovScore: 13,060Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 21, 2023 21:3113,0361,091,495,286743,051,0010263,913,472
2Dec 21, 2023 21:3113,0601,077,357,665744,437,6510264,171,520
3Dec 21, 2023 21:3113,2001,097,373,492752,415,8230261,844,992