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 11:11Andrey TsvetkovAndrey TsvetkovScore: 15,937Success
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 11:1115,8421,367,303,756902,995,1160266,027,008
2Nov 27, 2022 11:1115,9371,432,099,164908,427,5830265,670,656
3Nov 27, 2022 11:1115,9961,571,149,174911,771,1010262,905,856