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 10, 2023 23:58Benjamin YoungBenjamin YoungScore: 34,079Success
Source Code

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

Challenge History

No challenges yet.

Run Statistics
#DateScoreWall TimeCPU UserCPU SystemMemoryError
1Jan 10, 2023 23:5834,0732,689,767,4751,942,170,0090266,506,240
2Jan 10, 2023 23:5834,0792,722,459,8911,942,517,1210266,379,264
3Jan 10, 2023 23:5834,1552,727,827,1381,946,844,6320265,596,928