結果

問題 No.2154 あさかつの参加人数
ユーザー machoniumpmachoniump
提出日時 2022-12-09 22:13:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 250 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,976 KB
最終ジャッジ日時 2024-10-14 22:11:22
合計ジャッジ時間 44,421 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 1,356 ms
15,124 KB
testcase_06 AC 1,898 ms
21,600 KB
testcase_07 AC 1,193 ms
25,144 KB
testcase_08 AC 1,127 ms
26,612 KB
testcase_09 AC 429 ms
23,124 KB
testcase_10 AC 1,078 ms
24,116 KB
testcase_11 AC 1,984 ms
29,064 KB
testcase_12 AC 1,591 ms
24,020 KB
testcase_13 AC 1,068 ms
18,392 KB
testcase_14 AC 1,752 ms
23,540 KB
testcase_15 AC 1,074 ms
26,028 KB
testcase_16 AC 1,686 ms
25,484 KB
testcase_17 AC 1,918 ms
23,444 KB
testcase_18 TLE -
testcase_19 AC 258 ms
16,628 KB
testcase_20 AC 1,579 ms
26,920 KB
testcase_21 AC 384 ms
22,356 KB
testcase_22 AC 638 ms
29,364 KB
testcase_23 AC 1,825 ms
26,752 KB
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
imos = [0]*550000
for i in range(m):
    r, l = map(int, input().split())
    l -= 1
    imos[l] += 1
    imos[r] -= 1

for i in range(549999):
    imos[i+1] += imos[i]
for i in range(n-1, -1, -1):
    print(imos[i])
0