-Code
n = int(input())
nums = list(map(int, input().split()))
max_index = nums.index(max(nums))
print(sum(nums[:max_index]))
print(sum(nums[max_index + 1:]))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[selenium] find_element_by_* (0) | 2023.07.04 |
---|---|
[백준/파이썬] 24089번 ボールの移動 (Moving Balls) (0) | 2023.07.04 |
[백준/파이썬] 20978번 共通要素 (Common Elements) (0) | 2023.07.02 |
[백준/파이썬] 4864번 Gold Coins (0) | 2023.07.01 |
[백준/파이썬] 24077번 比較 (Comparison) (0) | 2023.06.30 |