반응형
SOLUTION
n_list = [int(input()) for i in range(9)]
print(max(n_list), n_list.index(max(n_list))+1, sep = "\n") # 인덱스는 0부터 시작하므로 +1 해줌
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 2675번: 문자열 반복 - 효과는 굉장했다! (0) | 2021.10.07 |
---|---|
[Baekjoon/Python] 2577번: 숫자의 개수 - 효과는 굉장했다! (0) | 2021.10.07 |
[Baekjoon/Python] 10952번: A+B - 5 - 효과는 굉장했다! (0) | 2021.10.06 |
[Baekjoon/Python] 10950번: A+B - 3 - 효과는 굉장했다! (0) | 2021.10.06 |
[Baekjoon/Python] 2884번: 알람 시계 - 효과는 굉장했다! (0) | 2021.10.06 |