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 listAug 22, 2024 16:38Andrey LikhachevAndrey LikhachevScore: 7,316Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Aug 22, 2024 16:387,231934,738,942412,180,8260260,669,440
2Aug 22, 2024 16:387,316773,239,043417,008,7070263,909,376
3Aug 22, 2024 16:387,366975,328,851419,869,5630263,213,056