結果

問題 No.2154 あさかつの参加人数
ユーザー KudeKude
提出日時 2022-12-09 21:27:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 429 ms / 2,000 ms
コード長 210 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-10-14 20:01:32
合計ジャッジ時間 11,928 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 423 ms
101,632 KB
testcase_01 AC 413 ms
101,120 KB
testcase_02 AC 415 ms
101,120 KB
testcase_03 AC 429 ms
101,760 KB
testcase_04 AC 418 ms
101,504 KB
testcase_05 AC 232 ms
76,544 KB
testcase_06 AC 342 ms
87,040 KB
testcase_07 AC 238 ms
91,520 KB
testcase_08 AC 231 ms
93,568 KB
testcase_09 AC 118 ms
86,656 KB
testcase_10 AC 242 ms
90,496 KB
testcase_11 AC 377 ms
98,304 KB
testcase_12 AC 307 ms
90,880 KB
testcase_13 AC 228 ms
81,664 KB
testcase_14 AC 326 ms
90,112 KB
testcase_15 AC 237 ms
92,928 KB
testcase_16 AC 312 ms
93,184 KB
testcase_17 AC 348 ms
89,984 KB
testcase_18 AC 367 ms
94,464 KB
testcase_19 AC 95 ms
78,208 KB
testcase_20 AC 312 ms
95,104 KB
testcase_21 AC 119 ms
85,504 KB
testcase_22 AC 142 ms
95,104 KB
testcase_23 AC 341 ms
95,104 KB
testcase_24 AC 376 ms
98,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
d = [0] * (n + 1)
for _ in range(m):
    l, r = map(int, input().split())
    d[n - l] += 1
    d[n - (r - 1)] -= 1
for i in range(n):
    d[i+1] += d[i]
print(*d[:n], sep='\n')
0