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 29, 2022 06:20apuxbtapuxbtScore: 12,052Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 29, 2022 06:2012,0522,253,611,303686,949,7510209,137,664
2Nov 29, 2022 06:2012,0522,350,107,496686,960,4370209,084,416
3Nov 29, 2022 06:2012,1072,307,728,626690,083,7950206,704,640