Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Web Hacking
- 인코그니토
- Database
- Text
- SuNiNaTas
- Network
- CTF
- php
- MySQL
- Incognito
- 사칙연산
- xcz.kr
- 구현
- writeup
- wargame
- 문자열
- 그리디 알고리즘
- 써니나타스
- Python
- C
- 수학
- misc
- cryptography
- 정렬
- Digital Forensics
- HackCTF
- N0Named
- Web
- Forensics
- 백준
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 11098번 첼시를 도와줘! 본문
[Baekjoon/Python3] 11098번 첼시를 도와줘!
for i in range(int(input())):
players = []
for j in range(int(input())):
price, name = input().split()
price = int(price)
players.append((price, name))
players.sort(key = lambda player: player[0])
print(players[-1][1])
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 11134번 쿠키애호가 (0) | 2020.12.07 |
---|---|
[Baekjoon/Python3] 11104번 Fridge of Your Dreams (0) | 2020.12.07 |
[Baekjoon/Python3] 11050번 이항 계수 1 (0) | 2020.12.07 |
[Baekjoon/Python3] 11047번 동전 0 (0) | 2020.12.07 |
[Baekjoon/Python3] 11024번 더하기 4 (0) | 2020.12.07 |
Comments