<문제주소>
https://www.codingame.com/ide/puzzle/the-descent
<문제>
<소스코드>
import sys
import math
while True:
max_h = 0
index = 0
for i in range(8):
mountain_h = int(input())
if mountain_h > max_h:
max_h = mountain_h
index = i
print(index)
★ 최댓값과 인덱스 변수를 루프 밖에 선언하면 계속 같은 인덱스만 출력한다. 그러므로 변수선언시 유심히 생각해본다.
'알고리즘' 카테고리의 다른 글
[알고리즘] 2. 가장 낮은 절댓값 찾기 (0) | 2020.08.12 |
---|---|
빅오(Big - O)표기법 (0) | 2020.07.08 |
댓글