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 22, 2024 18:43Yuriy LyfenkoYuriy LyfenkoScore: 7,280Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 22, 2024 18:437,2231,295,952,146411,684,0460266,928,128
2Jan 22, 2024 18:437,2801,305,985,497414,954,6620267,374,592
3Jan 22, 2024 18:437,3401,323,063,490418,404,2070264,982,528