Studio KimHippo :D
[Python / Algorithm Challenge] 5. 누가 MVP인가? 본문
Python Study/Algorithm Challenge
[Python / Algorithm Challenge] 5. 누가 MVP인가?
김작은하마 2019. 7. 8. 00:33# -*- coding : utf-8 -*-
# NOTE : KDA를 입력받아 mvp인 플레이어 추출
player_name = ['a1', 'a2', 'a3', 'a4', 'a5',
'b1', 'b2', 'b3', 'b4', 'b5' ]
player_score = {}
for rep in player_name:
kda = list(map(int, input('당신의 KDA를 입력하십시오. : ').split(' ')))
score = (kda[0] * 2 + kda[2]) / kda[1]
player_score[rep] = score
for rep in range(len(player_score)):
if list(player_score.values())[rep] == max(player_score.values()):
mvp = list(player_score.keys())[rep]
print('MVP : ', mvp)
'Python Study > Algorithm Challenge' 카테고리의 다른 글
[Python / Algorithm Challenge] 6. 선택 정렬(미완) (0) | 2019.07.08 |
---|---|
[Python / Algorithm Challenge ] 4. 문자열에서 숫자와 문자 따로 구분 (0) | 2019.07.08 |
[Python / Algorigthm Challenge ] 3. 1차원 평면 내 거리가 가장 짧은 두 점 추출 (0) | 2019.07.08 |
[Python / Algorithm Challenge] 2. 문자열 공백제거 (0) | 2019.07.08 |
[Python / Algorithm Challenge ] 1. 첫 번째 알고리즘 챌린지 (0) | 2019.07.08 |
Comments