본문 바로가기
python-algorithm

백준 14729 칠무해

by 무적김두칠 2021. 12. 14.

1
2
3
4
5
6
7
8
9
10
11
n=int(input())
tmp=[float(input()) for i in range(7)]
tmp.sort()
for i in range(n-7):
    cnt=float(input())
    if tmp[6]>cnt:
        tmp.pop()
        tmp.append(cnt)
    tmp.sort()
for i in tmp:
    print("%.3f"%(i))
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 9625 BABBA  (0) 2021.12.21
백준 11536 줄 세우기  (0) 2021.12.16
백준 11637 인기 투표  (0) 2021.12.14
백준 2435 기상청 인턴 신현수  (0) 2021.12.14
백준 15688 수 정렬하기 5  (0) 2021.12.14

댓글