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 25, 2023 02:36Yuriy LyfenkoYuriy LyfenkoScore: 20,942Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 25, 2023 02:3620,8451,934,451,5941,188,144,7240260,427,776
2Dec 25, 2023 02:3620,9422,132,727,3691,193,711,4450260,222,976
3Dec 25, 2023 02:3621,0261,985,592,0231,198,497,4960258,523,136