일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Crawling
- MongoDB
- 라즈베리파이3b+
- dp
- 13237
- 라즈비안
- HTML
- raspberrypi
- 백준
- node.js
- Algorythm
- 2909
- 라즈베리파이
- 파이썬
- baekjun
- bootstrap
- 라즈베리파이3
- ubuntu
- algotythm
- Python
- 알고리즘
- 트리
- CSS
- NAV
- 16.04
- 2579
- nav-tab
- 크롤링
- springboot3.x
- dynaminprogramming
Archives
- Today
- Total
목록17952 (1)
노트
[백준] 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)
알고리즘
2023. 6. 1. 23:03