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, 2024 13:29AnSaAnSaScore: 10,473Success
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, 2024 13:2910,377995,152,215591,506,5530267,636,736
2Jan 23, 2024 13:2910,4731,047,832,440596,968,5530267,616,256
3Jan 23, 2024 13:2910,587977,897,434603,449,3800267,718,656