agencies

[CodeUp] 1420 : 3등 찾기 본문

Ⅰ. 프로그래밍

[CodeUp] 1420 : 3등 찾기

agencies 2024. 4. 16. 08:30

a=int(input())

b=[]
c=[]
for i in range(a):
    x,y=input().split()

    b.append(x)
    c.append(int(y))

for i in range(a):
    for j in range(i,a):

        if c[i] < c[j]:
            t = c[j]
            c[j]=c[i]
            c[i]=t

            t = b[j]
            b[j]=b[i]
            b[i]=t

print(b[2])

'Ⅰ. 프로그래밍' 카테고리의 다른 글

exploit-db 검색 및 파싱  (0) 2024.09.18
[CodeUp] 1425 : 자리 배치  (0) 2024.04.16
[CodeUp] 1416 : 2진수 변환  (0) 2024.04.16
[CodeUp] 1412 : 알파벳 개수 출력하기  (0) 2024.04.16
[CodeUp] 1411 : 빠진 카드  (0) 2024.04.16