일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 파이썬
- 알고리즘
- MongoDB
- dynaminprogramming
- 라즈베리파이
- 라즈베리파이3
- baekjun
- Crawling
- 트리
- dp
- 2579
- 2909
- NAV
- springboot3.x
- HTML
- algotythm
- bootstrap
- Python
- 13237
- 크롤링
- 라즈베리파이3b+
- node.js
- ubuntu
- raspberrypi
- CSS
- nav-tab
- 라즈비안
- Algorythm
- 백준
- 16.04
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