-Code
for t in range(int(input())):
n = int(input())
h = list(map(int, input().split()))
for i in range(1, n - 1):
if h[i] > (h[i - 1] + h[i + 1]) / 2:
h[i] = (h[i - 1] + h[i + 1]) / 2
print("Case #%d: %06f" %((t + 1), h[-2]))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 25985번 Fastestest Function (0) | 2022.11.16 |
---|---|
[백준/파이썬] 25527번 Counting Peaks of Infection (0) | 2022.11.15 |
[백준/파이썬] 9635번 Balloons Colors (0) | 2022.11.13 |
[백준/파이썬] 16099번 Larger Sport Facility (0) | 2022.11.12 |
[백준/파이썬] 9838번 XMAS (0) | 2022.11.11 |