結果

問題 No.2154 あさかつの参加人数
ユーザー Meso MesoMeso Meso
提出日時 2024-07-24 19:49:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,484 KB
最終ジャッジ日時 2024-07-24 19:49:52
合計ジャッジ時間 41,020 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,996 ms
30,456 KB
testcase_01 AC 1,969 ms
30,484 KB
testcase_02 TLE -
testcase_03 AC 1,994 ms
30,364 KB
testcase_04 TLE -
testcase_05 AC 1,036 ms
10,752 KB
testcase_06 AC 1,559 ms
18,816 KB
testcase_07 AC 997 ms
23,040 KB
testcase_08 AC 998 ms
25,216 KB
testcase_09 AC 322 ms
20,992 KB
testcase_10 AC 906 ms
22,016 KB
testcase_11 AC 1,735 ms
28,036 KB
testcase_12 AC 1,364 ms
22,144 KB
testcase_13 AC 851 ms
14,976 KB
testcase_14 AC 1,503 ms
21,376 KB
testcase_15 AC 921 ms
24,448 KB
testcase_16 AC 1,457 ms
23,680 KB
testcase_17 AC 1,744 ms
21,120 KB
testcase_18 AC 1,708 ms
24,940 KB
testcase_19 AC 142 ms
12,928 KB
testcase_20 AC 1,371 ms
25,540 KB
testcase_21 AC 272 ms
19,968 KB
testcase_22 AC 567 ms
28,732 KB
testcase_23 AC 1,617 ms
25,300 KB
testcase_24 AC 1,814 ms
28,004 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