power-girl0-0

[ 2562 ] 최댓값 본문

백준 알고리즘/python

[ 2562 ] 최댓값

power-girl0-0 2021. 3. 2. 00:56
728x90

max = 0
cnt = 0

for i in range(9):
    cnt +=1
    num = int(input())
    if(max < num):
        max = num
        location = cnt

print(max, location)
728x90

'백준 알고리즘 > python' 카테고리의 다른 글

[ 3052 ] 나머지  (0) 2021.03.02
[ 2577 ] 숫자의 개수  (0) 2021.03.02
[ 10818 ] 최소, 최대  (0) 2021.03.02
[ 1110 ] 더하기 사이클  (0) 2021.03.01
[ 10951 ] A+B - 4  (0) 2021.02.28
Comments