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 listDec 14, 2023 06:49Evgeniy KhaluevEvgeniy KhaluevScore: 23,891Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 14, 2023 06:4923,8262,352,884,3521,358,063,0780172,290,048
2Dec 14, 2023 06:4923,8912,638,993,5371,361,797,7170172,965,888
3Dec 14, 2023 06:4923,9722,766,851,1551,366,429,0540173,744,128