n = int(input())
num = list(map(int, input().split()))
point = 0
addpoint = 0
for i in range(n):
if num[i] == 1:
point = point + addpoint + 1
addpoint += 1
else:
addpoint = 0
print(point)
'Python > 백준' 카테고리의 다른 글
백준 - 3053 택시 기하학 (0) | 2022.10.18 |
---|---|
백준 - 2748 피보나치 수 2 (1) | 2022.10.13 |
백준 - 7891 Can you add this? (0) | 2022.10.11 |
백준 - 10886 0 = not cute / 1 = cute (0) | 2022.10.10 |
백준 - 10826 피보나치 수 4 (0) | 2022.10.08 |