結果

問題 No.2154 あさかつの参加人数
ユーザー MasKoaTSMasKoaTS
提出日時 2022-12-09 21:30:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 467 ms / 2,000 ms
コード長 901 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 152,524 KB
最終ジャッジ日時 2024-10-14 20:30:16
合計ジャッジ時間 13,068 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 459 ms
152,064 KB
testcase_01 AC 467 ms
152,192 KB
testcase_02 AC 456 ms
152,064 KB
testcase_03 AC 450 ms
152,524 KB
testcase_04 AC 437 ms
152,192 KB
testcase_05 AC 325 ms
128,768 KB
testcase_06 AC 396 ms
143,744 KB
testcase_07 AC 305 ms
119,552 KB
testcase_08 AC 279 ms
116,992 KB
testcase_09 AC 189 ms
95,232 KB
testcase_10 AC 289 ms
116,096 KB
testcase_11 AC 421 ms
143,744 KB
testcase_12 AC 349 ms
133,256 KB
testcase_13 AC 277 ms
118,272 KB
testcase_14 AC 383 ms
138,496 KB
testcase_15 AC 274 ms
115,072 KB
testcase_16 AC 363 ms
134,856 KB
testcase_17 AC 383 ms
144,100 KB
testcase_18 AC 405 ms
145,408 KB
testcase_19 AC 161 ms
92,224 KB
testcase_20 AC 352 ms
131,840 KB
testcase_21 AC 172 ms
94,372 KB
testcase_22 AC 197 ms
99,712 KB
testcase_23 AC 388 ms
140,544 KB
testcase_24 AC 419 ms
146,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]
#di = coll.defaultdict(int)


"""
Main Code
"""

n, m = getNs()
imos = [0] * (n + 1)
for l, r in [getList() for _ in [0]*m]:
	imos[n - l] += 1
	imos[n - r + 1] -= 1
now = 0
for k in imos[:n]:
	now += k
	print(now)
0