[희소 테이블/파이썬] 백준 3117번 : YouTube / 플래5
https://www.acmicpc.net/problem/3117 3117번: YouTube 첫째 줄에 N, K, M이 주어진다. (1 ≤ N,K ≤ 100,000) (1 ≤ M ≤ 1,000,000,000) N은 학생의 수, K는 동영상의 개수, M은 남은 수업 시간이다. 둘째 줄에는 1보다 크거나 같고, K보다 작거나 같은 수가 N개 www.acmicpc.net import sys input = sys.stdin.readline n, k, m = map(int, input().split()) lst = list(map(int, input().split())) next = list(map(int, input().split())) h = 1 count = 0 while h
2022. 4. 9.