結果

問題 No.2154 あさかつの参加人数
ユーザー H20H20
提出日時 2022-12-09 21:40:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 543 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 163,972 KB
最終ジャッジ日時 2024-10-14 21:10:13
合計ジャッジ時間 14,400 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 507 ms
163,820 KB
testcase_01 AC 528 ms
162,928 KB
testcase_02 AC 515 ms
163,832 KB
testcase_03 AC 529 ms
163,972 KB
testcase_04 AC 543 ms
163,824 KB
testcase_05 AC 343 ms
113,792 KB
testcase_06 AC 464 ms
142,080 KB
testcase_07 AC 300 ms
125,312 KB
testcase_08 AC 279 ms
125,440 KB
testcase_09 AC 139 ms
97,664 KB
testcase_10 AC 280 ms
116,992 KB
testcase_11 AC 482 ms
156,800 KB
testcase_12 AC 411 ms
135,424 KB
testcase_13 AC 283 ms
110,080 KB
testcase_14 AC 420 ms
136,504 KB
testcase_15 AC 278 ms
113,664 KB
testcase_16 AC 401 ms
139,392 KB
testcase_17 AC 469 ms
145,664 KB
testcase_18 AC 476 ms
152,192 KB
testcase_19 AC 112 ms
81,792 KB
testcase_20 AC 388 ms
133,284 KB
testcase_21 AC 126 ms
96,768 KB
testcase_22 AC 178 ms
115,456 KB
testcase_23 AC 433 ms
147,456 KB
testcase_24 AC 485 ms
159,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools
N,M = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(M)]
IMOS = [0]*N
for l,r in LR:
    IMOS[-l]+=1
    if -r+1<0:
        IMOS[-r+1]-=1
ANS = list(itertools.accumulate(IMOS))
for ans in ANS:
    print(ans)
0