結果

問題 No.2154 あさかつの参加人数
ユーザー miya145592miya145592
提出日時 2023-05-04 05:52:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 574 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 168,992 KB
最終ジャッジ日時 2024-11-22 01:51:29
合計ジャッジ時間 16,927 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 564 ms
168,748 KB
testcase_01 AC 574 ms
168,828 KB
testcase_02 AC 551 ms
168,932 KB
testcase_03 AC 566 ms
168,960 KB
testcase_04 AC 566 ms
168,992 KB
testcase_05 AC 375 ms
113,936 KB
testcase_06 AC 502 ms
140,208 KB
testcase_07 AC 334 ms
125,328 KB
testcase_08 AC 306 ms
125,788 KB
testcase_09 AC 146 ms
98,276 KB
testcase_10 AC 301 ms
119,808 KB
testcase_11 AC 496 ms
157,436 KB
testcase_12 AC 401 ms
135,952 KB
testcase_13 AC 291 ms
110,080 KB
testcase_14 AC 432 ms
140,524 KB
testcase_15 AC 293 ms
124,008 KB
testcase_16 AC 422 ms
139,532 KB
testcase_17 AC 483 ms
143,872 KB
testcase_18 AC 483 ms
152,320 KB
testcase_19 AC 115 ms
81,920 KB
testcase_20 AC 399 ms
139,904 KB
testcase_21 AC 136 ms
95,232 KB
testcase_22 AC 178 ms
115,840 KB
testcase_23 AC 452 ms
147,712 KB
testcase_24 AC 515 ms
159,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
LR = [list(map(int, input().split())) for _ in range(M)]
C = [0 for _ in range(N+1)]
for l, r in LR:
    C[N-l+1]+=1
    if N-r+2<=N:
        C[N-r+2]-=1
S = [0]
for i in range(1, N+1):
    S.append(S[-1]+C[i])
for i in range(1, N+1):
    print(S[i])
0