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

[백준/파이썬] 32642번 당구 좀 치자 제발

by 현장 2024. 11. 11.

-Code

n = int(input())
weather = list(map(int, input().split()))
now, res = 0, 0

for el in weather:
    if el == 1:
        now += 1
    else:
        now -= 1

    res += now

print(res)