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 listNov 26, 2022 21:30Andrey TsvetkovAndrey TsvetkovScore: 22,040Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 26, 2022 21:3022,0361,816,281,7761,256,028,6310261,652,480
2Nov 26, 2022 21:3022,0401,851,045,1191,256,293,5180263,483,392
3Nov 26, 2022 21:3022,0561,908,525,7891,257,189,8400264,818,688