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 1, 2022 03:29Yuriy LyfenkoYuriy LyfenkoScore: 7,206Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Dec 1, 2022 03:297,1842,136,325,640409,508,8410267,157,504
2Dec 1, 2022 03:297,2061,934,059,546410,763,1450267,026,432
3Dec 1, 2022 03:2911,3136,182,861,614644,841,5720267,161,600