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 23, 2025 08:48NoSIMD_C#NoSIMD_C#Score: 26,003Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 23, 2025 08:4825,6911,517,009,694939,307,000525,054,000233,066,496
2Jan 23, 2025 08:4826,0031,519,703,298967,169,000515,025,000241,168,384
3Jan 23, 2025 08:4826,2521,541,503,296961,308,000535,058,000237,174,784