diff --git a/zeta_python/completed/30802.py b/zeta_python/completed/30802.py new file mode 100644 index 0000000..5ca13af --- /dev/null +++ b/zeta_python/completed/30802.py @@ -0,0 +1,9 @@ +import math + +if __name__ == "__main__": + N = int(input()) + S = list(map(int, input().split())) + T, P = map(int, input().split()) + + print(sum(math.ceil(s / T) for s in S)) + print(N // P, N % P)