1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
def sol(n):
ans=0
while n>0:
if n>=5:
n-=5
elif n>=4:
n-=4
elif n>=3:
n-=3
elif n>=2:
n-=2
elif n>=1:
n-=1
ans+=1
return ans
print(sol(int(input())))
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
codeforces 677A - Vanya and Fence (0) | 2022.05.31 |
---|---|
codeforces 96A - Football (0) | 2022.05.31 |
codeforces 1686A - Everything Everywhere All But One (0) | 2022.05.30 |
백준 24544 카카오뷰 큐레이팅 효용성 분석 (0) | 2022.05.26 |
백준 23813 회전 (0) | 2022.05.26 |
댓글