https://www.acmicpc.net/problem/2562
li = []
for i in range(9):
li.append(int(input()))
max_num = max(li)
print(max_num)
print(li.index(max_num)+1)
마지막에 몇 번째 숫자인지 출력하는 부분은
python list method 중 index를 활용하여 출력하였습니다.
백준 3052 - 나머지 (파이썬) (0) | 2020.07.19 |
---|---|
백준 2577 - 숫자의 개수 (파이썬) (0) | 2020.07.15 |
백준 10818 - 최소,최대 (파이썬) (0) | 2020.07.13 |
백준 10996 - 별 찍기 - 21 (파이썬) (0) | 2020.07.13 |
백준 2446 - 별 찍기 - 9 (파이썬) (0) | 2020.07.13 |