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 27, 2022 04:13AmirAmirScore: 29,509Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Nov 27, 2022 04:1329,4912,228,236,3731,681,006,9810267,735,040
2Nov 27, 2022 04:1329,5092,962,394,7241,682,022,2820268,050,432
3Nov 27, 2022 04:1329,9022,909,715,9311,704,396,6420267,427,840