본문 바로가기
python-algorithm

백준 17952 과제는 끝나지 않아!

by 무적김두칠 2021. 12. 30.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#17952
import sys
n=int(input())
assignmentList=[]
score=0
for i in range (n):
    task=list(map(int, sys.stdin.readline().split()))
    if task[0]==1:
        assignmentList.append([task[1],task[2]])
    if assignmentList:
        assignmentList[-1][1]-=1
        if assignmentList[-1][1]==0:
            score += assignmentList[-1][0]
            assignmentList.pop()
print(score)
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 1235 학생 번호  (0) 2022.01.01
백준 13171 A  (0) 2021.12.30
백준 11899 괄호 끼워넣기  (0) 2021.12.29
백준 11332 시간초과  (0) 2021.12.28
백준 2729 이진수 덧셈  (0) 2021.12.28

댓글