๋ฌธ์ ๋งํฌ
https://www.acmicpc.net/problem/13458
์ฝ๋ ์ ์ถ ๊ธฐ๋ก (๋ฉ๋ชจ๋ฆฌ ๋ฐ ์๊ฐ)
์ ์ถ ๋ ์ง
@4/22/2021
๋ฉ๋ชจ๋ฆฌ
245340 KB
์๊ฐ
420 ms
๋ฉ๋ชจ
โข
์ผ์ฑ sw ์ฝ๋ฉํ
์คํธ ๊ธฐ์ถ๋ฌธ์
๋ฌธ์ ํ์ด
student[i] ๋ก ์ ๊ทผํ๋ฉด ์ค๋ฅ (์ด์ ๋...๋ชจ๋ฅด๊ฒ ์)
Code
N = int(input())
student = list(map(int, input().split()))
B, C = map(int, input().split())
answer = 0
for s in student:
s -= B
answer += 1
if s > 0:
answer += s // C
if s % C != 0:
answer += 1
print(answer)
Python
๋ณต์ฌ