結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,170 ms
220,376 KB
testcase_01 AC 1,179 ms
220,504 KB
testcase_02 AC 1,186 ms
220,620 KB
testcase_03 AC 1,125 ms
220,248 KB
testcase_04 AC 1,149 ms
220,332 KB
testcase_05 AC 323 ms
78,208 KB
testcase_06 AC 850 ms
137,840 KB
testcase_07 AC 576 ms
141,884 KB
testcase_08 AC 565 ms
149,368 KB
testcase_09 AC 231 ms
123,068 KB
testcase_10 AC 518 ms
134,328 KB
testcase_11 AC 986 ms
198,496 KB
testcase_12 AC 758 ms
147,028 KB
testcase_13 AC 458 ms
104,276 KB
testcase_14 AC 862 ms
151,336 KB
testcase_15 AC 566 ms
147,800 KB
testcase_16 AC 787 ms
153,944 KB
testcase_17 AC 881 ms
152,568 KB
testcase_18 AC 958 ms
177,240 KB
testcase_19 AC 146 ms
90,208 KB
testcase_20 AC 789 ms
180,484 KB
testcase_21 AC 213 ms
116,036 KB
testcase_22 AC 343 ms
149,796 KB
testcase_23 AC 905 ms
172,152 KB
testcase_24 AC 1,023 ms
200,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m =map(int,input().split())
import collections
llist = collections.defaultdict(int)
rlist = collections.defaultdict(int)
for i in range(m):
    l,r =map(int,input().split())
    llist[l] += 1
    rlist[r] += 1

for i in reversed(range(1,n+1)):
    if i == n:
        temp = llist[i]
        print(temp)
    else:
        temp += llist[i]
        temp -= rlist[i+1]
        print(temp)
0