풀이
https://www.acmicpc.net/problem/10773
걸린 시간
00 : 05 : 38
풀이
Python3
if __name__ == "__main__":
K = int(input())
result = []
for i in range(0, K):
temp = int(input())
if temp == 0:
if len(result) != 0:
result.pop()
else:
result.append(temp)
print(sum(result))
'Baekjoon' 카테고리의 다른 글
Baekjoon 1929번 소수 구하기 (0) | 2020.07.23 |
---|---|
Baekjoon 2108번 통계학 (0) | 2020.07.22 |
Baekjoon 1436번 영화감독 숌 (0) | 2020.07.22 |
Baekjoon 7568번 덩치 (0) | 2020.07.22 |
Baekjoon 2941번 크로아티아 알파벳 (0) | 2020.07.21 |
댓글