13458
-
[백준] 13458번_시험감독Study/알고리즘 2020. 1. 24. 13:48
문제 링크 : https://www.acmicpc.net/problem/13458 13458번: 시험 감독 첫째 줄에 시험장의 개수 N(1 ≤ N ≤ 1,000,000)이 주어진다. 둘째 줄에는 각 시험장에 있는 응시자의 수 Ai (1 ≤ Ai ≤ 1,000,000)가 주어진다. 셋째 줄에는 B와 C가 주어진다. (1 ≤ B, C ≤ 1,000,000) www.acmicpc.net import sys import math n = int(sys.stdin.readline()) students = list(map(int,sys.stdin.readline().rstrip().split())) b,c = list(map(int,input().split())) count = 0 for student in stud..