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 listJan 24, 2024 05:41Yuriy LyfenkoYuriy LyfenkoScore: 6,447Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 24, 2024 05:416,3551,782,985,178362,239,0350267,939,840
2Jan 24, 2024 05:416,4471,833,670,426367,463,3790268,054,528
3Jan 24, 2024 05:416,6021,844,770,048376,295,3860268,132,352