結果

問題 No.2154 あさかつの参加人数
ユーザー Meso MesoMeso Meso
提出日時 2024-07-24 19:50:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 225 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 80,980 KB
最終ジャッジ日時 2024-07-24 19:50:33
合計ジャッジ時間 13,553 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 463 ms
80,768 KB
testcase_01 AC 427 ms
80,640 KB
testcase_02 AC 435 ms
80,980 KB
testcase_03 AC 421 ms
80,332 KB
testcase_04 AC 431 ms
80,720 KB
testcase_05 AC 259 ms
76,544 KB
testcase_06 AC 368 ms
78,208 KB
testcase_07 AC 254 ms
78,848 KB
testcase_08 AC 236 ms
79,632 KB
testcase_09 AC 109 ms
78,580 KB
testcase_10 AC 231 ms
78,732 KB
testcase_11 AC 387 ms
79,880 KB
testcase_12 AC 320 ms
78,952 KB
testcase_13 AC 225 ms
77,824 KB
testcase_14 AC 374 ms
78,688 KB
testcase_15 AC 229 ms
79,320 KB
testcase_16 AC 337 ms
79,500 KB
testcase_17 AC 390 ms
78,568 KB
testcase_18 AC 394 ms
79,488 KB
testcase_19 AC 94 ms
76,672 KB
testcase_20 AC 321 ms
79,360 KB
testcase_21 AC 113 ms
78,560 KB
testcase_22 AC 143 ms
80,128 KB
testcase_23 AC 369 ms
79,184 KB
testcase_24 AC 397 ms
79,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

s = [0] * (n + 2)

for i in range(m):
    l, r = map(int, input().split())
    s[r] += 1
    s[l+1] -= 1

for i in range(1, n+2):
    s[i] += s[i-1]

for i in range(n, 0, -1):
    print(s[i])
0