<문제주소>
https://www.codingame.com/ide/puzzle/temperatures
<문제>
<소스코드>
import sys
import math
# Auto-generated code below aims at helping you parse
# the standard input according to the problem statement.
n = int(input()) # the number of temperatures to analyse
if n == 0:
print("0")
else:
result = 5527
temperatures = input().split(' ')
for i in range(n):
t = int(temperatures[i])
if t == 0:
result = t
break
elif abs(t) < abs(result) :
result = t
elif abs(t) == abs(result):
result = abs(t)
print(result)
'알고리즘' 카테고리의 다른 글
[알고리즘] 1. 반복문으로 가장 높은 산을 파괴(최댓값) (0) | 2020.08.12 |
---|---|
빅오(Big - O)표기법 (0) | 2020.07.08 |
댓글