結果

問題 No.2154 あさかつの参加人数
ユーザー w0t0w0t0
提出日時 2022-12-09 21:41:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 81,060 KB
最終ジャッジ日時 2024-10-14 21:13:14
合計ジャッジ時間 12,297 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 422 ms
80,728 KB
testcase_01 AC 415 ms
80,712 KB
testcase_02 AC 422 ms
80,988 KB
testcase_03 AC 426 ms
81,060 KB
testcase_04 AC 424 ms
80,780 KB
testcase_05 AC 237 ms
80,504 KB
testcase_06 AC 380 ms
80,384 KB
testcase_07 AC 247 ms
80,472 KB
testcase_08 AC 235 ms
80,384 KB
testcase_09 AC 111 ms
80,240 KB
testcase_10 AC 226 ms
80,268 KB
testcase_11 AC 381 ms
80,688 KB
testcase_12 AC 325 ms
80,384 KB
testcase_13 AC 226 ms
80,000 KB
testcase_14 AC 349 ms
80,384 KB
testcase_15 AC 221 ms
80,452 KB
testcase_16 AC 326 ms
80,316 KB
testcase_17 AC 378 ms
80,400 KB
testcase_18 AC 387 ms
80,248 KB
testcase_19 AC 94 ms
79,804 KB
testcase_20 AC 310 ms
80,184 KB
testcase_21 AC 106 ms
80,524 KB
testcase_22 AC 136 ms
80,792 KB
testcase_23 AC 362 ms
80,172 KB
testcase_24 AC 388 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
Z=[0]*(10**5*5+1)
for _ in range(M):
    L,R=map(int,input().split())
    Z[-1-L]+=1
    Z[-R]-=1
now=0
for i in range(N+1,1,-1):
    now+=Z[-i]
    print(now)
0