반응형
https://www.acmicpc.net/problem/10773
class stack:
def __init__(self):
self.tmp = []
def push(self,x):
self.tmp.append(x)
def pop(self):
if self.size() == 0:
return -1
else:
return self.tmp.pop(-1)
def size(self):
return len(self.tmp)
def empty(self):
if self.size() == 0:
return 1
else:
return 0
def top(self):
if self.size()==0:
return -1
else:
return self.tmp[-1]
def hap(self):
return sum(self.tmp)
import sys
N = int(sys.stdin.readline())
s = stack()
for _ in range(N):
x = int(sys.stdin.readline())
if x != 0:
s.push(x)
else:
s.pop()
print(s.hap())
일부러 모든 스택의 함수를 구현하였다(연습용) 필요시 삭제해도 무관하다.
반응형
'백준 문제풀이' 카테고리의 다른 글
python - baekjoon - 10814 (0) | 2020.09.05 |
---|---|
baekjoon - python - 1181 (0) | 2020.09.05 |
baekjoon - python - 10952 (0) | 2020.09.05 |
baekjoon - python - 10951 (0) | 2020.09.05 |
baekjoon - python - 10950 (0) | 2020.09.05 |
댓글