1
2
3
4
5
6
7
8
9
10
11
|
def sol(nums,h):
ans = 0
for i in nums:
if i > h:
ans += 2
else:
ans += 1
print(ans)
n,h=map(int,input().split())
nums=list(map(int, input().split()))
sol(nums,h)
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
백준 24265 알고리즘 수업 - 알고리즘의 수행 시간 4 (0) | 2022.06.09 |
---|---|
codeforces 1351A - A+B (Trial Problem) (0) | 2022.06.07 |
codeforces 96A - Football (0) | 2022.05.31 |
codeforces 617A - Elephant (0) | 2022.05.31 |
codeforces 1686A - Everything Everywhere All But One (0) | 2022.05.30 |
댓글