일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 16.04
- 알고리즘
- 백준
- node.js
- 라즈비안
- dynaminprogramming
- ubuntu
- bootstrap
- HTML
- dp
- raspberrypi
- nav-tab
- 2909
- 크롤링
- 라즈베리파이3b+
- 2579
- NAV
- springboot3.x
- MongoDB
- 라즈베리파이
- 13237
- 라즈베리파이3
- Python
- algotythm
- baekjun
- 파이썬
- Algorythm
- Crawling
- 트리
- CSS
Archives
- Today
- Total
노트
[백준] 17952번 과제는 끝나지 않아! python 본문
자꾸 시간초과가 나서 readline 추가
import sys
input = sys.stdin.readline
n = int(input())
hw = []
final_score = 0
idx = 0
for _ in range(n):
line = list(map(int,input().split()))
if line[0]==1:
if line[2]-1==0:
final_score += line[1]
else:
hw.append([line[1],line[2]-1])
idx += 1
else:
if len(hw)>0:
hw[idx-1][1] -= 1
if hw[idx-1][1]==0:
score, time = hw.pop()
final_score+=score
idx -= 1
print(final_score)
'알고리즘' 카테고리의 다른 글
[백준] 28224번 Final Price python (0) | 2023.06.17 |
---|---|
[백준] 27962번 오렌지먹은지오랜지 python (0) | 2023.06.09 |
[백준] 2941번 크로아티아 알파벳 python (0) | 2023.06.01 |
[백준] 12789번 도키도키 간식드리미 python (0) | 2023.05.25 |
[백준] 1316번 그룹 단어 체커 python (0) | 2023.05.25 |
Comments