結果

問題 No.2154 あさかつの参加人数
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-12-09 22:07:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 413 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,936 KB
最終ジャッジ日時 2024-10-14 22:04:28
合計ジャッジ時間 11,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 401 ms
87,680 KB
testcase_01 AC 413 ms
87,680 KB
testcase_02 AC 411 ms
87,808 KB
testcase_03 AC 391 ms
87,680 KB
testcase_04 AC 394 ms
87,936 KB
testcase_05 AC 227 ms
76,288 KB
testcase_06 AC 335 ms
81,280 KB
testcase_07 AC 230 ms
83,584 KB
testcase_08 AC 228 ms
84,992 KB
testcase_09 AC 114 ms
82,560 KB
testcase_10 AC 217 ms
83,072 KB
testcase_11 AC 343 ms
86,528 KB
testcase_12 AC 313 ms
82,944 KB
testcase_13 AC 204 ms
78,720 KB
testcase_14 AC 313 ms
82,688 KB
testcase_15 AC 213 ms
84,224 KB
testcase_16 AC 297 ms
84,096 KB
testcase_17 AC 334 ms
82,688 KB
testcase_18 AC 368 ms
84,864 KB
testcase_19 AC 96 ms
77,824 KB
testcase_20 AC 289 ms
85,120 KB
testcase_21 AC 106 ms
81,792 KB
testcase_22 AC 134 ms
87,424 KB
testcase_23 AC 318 ms
84,864 KB
testcase_24 AC 356 ms
86,400 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
    
for i in range(n+1):
    imos[i+1] += imos[i]
    
for i in imos[1:n+1][::-1]:
    print(i)
0