1
2
3
4
5
6
7
8
9
|
import sys
n = int(input())
list = []
for i in range(n):
list.append(int(sys.stdin.readline()))
if list[-1]==0:
list.pop()
list.pop()
print(sum(list))
|
cs |
'백준' 카테고리의 다른 글
백준 11724번: 연결 요소의 개수 (0) | 2021.05.20 |
---|---|
백준 2606번: 바이러스 (0) | 2021.05.20 |
백준 2108번: 통계학 (0) | 2021.05.18 |
백준 2667번: 단지번호붙이기 (0) | 2021.05.16 |
백준 9012번: 괄호 (0) | 2021.05.07 |