본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 29454번 Выражение

by 현장 2024. 3. 8.

-Code

n = int(input())
nums = list(map(int, input().split()))

for i in range(n):
    temp = nums[:i] + nums[i + 1:]

    if sum(temp) == nums[i]:
        print(i + 1)
        break