結果

問題 No.2154 あさかつの参加人数
ユーザー tamlog06tamlog06
提出日時 2022-12-09 21:33:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,182 ms / 2,000 ms
コード長 268 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 220,500 KB
最終ジャッジ日時 2024-10-14 20:42:26
合計ジャッジ時間 24,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,182 ms
220,476 KB
testcase_01 AC 1,174 ms
220,500 KB
testcase_02 AC 1,166 ms
220,480 KB
testcase_03 AC 1,142 ms
220,488 KB
testcase_04 AC 1,136 ms
220,492 KB
testcase_05 AC 319 ms
78,136 KB
testcase_06 AC 865 ms
137,744 KB
testcase_07 AC 592 ms
138,372 KB
testcase_08 AC 585 ms
151,060 KB
testcase_09 AC 232 ms
118,508 KB
testcase_10 AC 535 ms
135,208 KB
testcase_11 AC 1,017 ms
199,936 KB
testcase_12 AC 790 ms
146,784 KB
testcase_13 AC 484 ms
103,892 KB
testcase_14 AC 854 ms
147,504 KB
testcase_15 AC 556 ms
152,812 KB
testcase_16 AC 833 ms
154,180 KB
testcase_17 AC 905 ms
152,148 KB
testcase_18 AC 994 ms
177,324 KB
testcase_19 AC 143 ms
90,364 KB
testcase_20 AC 809 ms
180,316 KB
testcase_21 AC 217 ms
118,876 KB
testcase_22 AC 345 ms
150,572 KB
testcase_23 AC 933 ms
171,816 KB
testcase_24 AC 1,035 ms
204,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
from collections import defaultdict
L, R = defaultdict(int), defaultdict(int)

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

n = 0
for i in range(N, 0, -1):
    n = n + L[i] - R[i]
    print(n)
0