結果

問題 No.2154 あさかつの参加人数
ユーザー hir355hir355
提出日時 2022-12-09 21:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 392 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 84,720 KB
最終ジャッジ日時 2024-10-14 21:26:19
合計ジャッジ時間 11,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 382 ms
84,352 KB
testcase_01 AC 388 ms
84,720 KB
testcase_02 AC 388 ms
84,608 KB
testcase_03 AC 392 ms
84,352 KB
testcase_04 AC 377 ms
84,480 KB
testcase_05 AC 220 ms
76,288 KB
testcase_06 AC 333 ms
79,872 KB
testcase_07 AC 220 ms
81,512 KB
testcase_08 AC 213 ms
82,176 KB
testcase_09 AC 109 ms
80,868 KB
testcase_10 AC 208 ms
81,152 KB
testcase_11 AC 334 ms
83,832 KB
testcase_12 AC 286 ms
80,896 KB
testcase_13 AC 208 ms
77,952 KB
testcase_14 AC 308 ms
80,896 KB
testcase_15 AC 203 ms
82,436 KB
testcase_16 AC 306 ms
81,664 KB
testcase_17 AC 340 ms
80,640 KB
testcase_18 AC 347 ms
81,920 KB
testcase_19 AC 92 ms
77,184 KB
testcase_20 AC 278 ms
82,048 KB
testcase_21 AC 103 ms
79,872 KB
testcase_22 AC 131 ms
83,712 KB
testcase_23 AC 340 ms
82,416 KB
testcase_24 AC 355 ms
83,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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