結果

問題 No.2154 あさかつの参加人数
ユーザー tomoyawatomoyawa
提出日時 2023-01-02 19:17:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 506 ms / 2,000 ms
コード長 263 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 124,688 KB
最終ジャッジ日時 2024-11-27 01:13:23
合計ジャッジ時間 13,905 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 495 ms
124,564 KB
testcase_01 AC 506 ms
124,688 KB
testcase_02 AC 498 ms
124,288 KB
testcase_03 AC 476 ms
124,672 KB
testcase_04 AC 487 ms
124,416 KB
testcase_05 AC 337 ms
108,032 KB
testcase_06 AC 441 ms
118,656 KB
testcase_07 AC 276 ms
99,328 KB
testcase_08 AC 274 ms
97,152 KB
testcase_09 AC 116 ms
80,384 KB
testcase_10 AC 255 ms
97,280 KB
testcase_11 AC 431 ms
117,504 KB
testcase_12 AC 379 ms
110,080 KB
testcase_13 AC 274 ms
99,456 KB
testcase_14 AC 427 ms
115,072 KB
testcase_15 AC 257 ms
95,744 KB
testcase_16 AC 394 ms
111,232 KB
testcase_17 AC 450 ms
119,040 KB
testcase_18 AC 454 ms
119,424 KB
testcase_19 AC 111 ms
78,976 KB
testcase_20 AC 355 ms
108,928 KB
testcase_21 AC 112 ms
79,872 KB
testcase_22 AC 146 ms
82,688 KB
testcase_23 AC 433 ms
115,840 KB
testcase_24 AC 441 ms
119,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
rl=[tuple(map(int,input().split())) for _ in range(M)]
cul=[0]*(N+2)
for t in rl:
    right,left=t
    cul[left]+=1
    cul[right+1]-=1
for i in range(1,N+2):
    cul[i]+=cul[i-1]
for idx in reversed(range(1,N+1)):
    print(cul[idx])
0