結果

問題 No.2154 あさかつの参加人数
ユーザー kemunikukemuniku
提出日時 2022-12-09 21:29:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 452 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 116,736 KB
最終ジャッジ日時 2024-10-14 20:15:31
合計ジャッジ時間 12,909 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 452 ms
116,736 KB
testcase_01 AC 449 ms
116,352 KB
testcase_02 AC 446 ms
116,480 KB
testcase_03 AC 445 ms
116,736 KB
testcase_04 AC 450 ms
116,480 KB
testcase_05 AC 233 ms
76,672 KB
testcase_06 AC 383 ms
92,788 KB
testcase_07 AC 259 ms
101,104 KB
testcase_08 AC 249 ms
104,576 KB
testcase_09 AC 124 ms
95,916 KB
testcase_10 AC 241 ms
98,284 KB
testcase_11 AC 408 ms
111,448 KB
testcase_12 AC 334 ms
98,140 KB
testcase_13 AC 230 ms
83,964 KB
testcase_14 AC 363 ms
97,920 KB
testcase_15 AC 245 ms
104,320 KB
testcase_16 AC 355 ms
101,028 KB
testcase_17 AC 397 ms
98,176 KB
testcase_18 AC 401 ms
104,320 KB
testcase_19 AC 95 ms
79,476 KB
testcase_20 AC 328 ms
107,352 KB
testcase_21 AC 117 ms
95,368 KB
testcase_22 AC 154 ms
112,128 KB
testcase_23 AC 380 ms
104,576 KB
testcase_24 AC 417 ms
111,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
imos = [0]*(N+2)
for i in range(M):
    L,R = map(int,input().split())
    imos[R] += 1
    imos[L+1] -= 1
now = 0
ans = []
for i in range(N+1):
    now += imos[i]
    ans.append(now)
for k in range(len(ans)-1):
    print(ans[len(ans)-1-k])
0