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 2, 2024 15:42Bohdan StorozhukBohdan StorozhukScore: 8,985Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 2, 2024 15:428,966827,058,267511,082,4070262,987,776
2Jan 2, 2024 15:428,985830,429,516512,142,4900263,913,472
3Jan 2, 2024 15:429,032841,560,960514,800,8750263,462,912