結果

問題 No.2154 あさかつの参加人数
ユーザー qibqib
提出日時 2023-05-11 20:12:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 397 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 101,760 KB
最終ジャッジ日時 2024-11-27 16:46:10
合計ジャッジ時間 13,362 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 390 ms
101,376 KB
testcase_01 AC 397 ms
101,376 KB
testcase_02 AC 384 ms
101,376 KB
testcase_03 AC 396 ms
101,248 KB
testcase_04 AC 386 ms
101,760 KB
testcase_05 AC 219 ms
76,800 KB
testcase_06 AC 312 ms
87,040 KB
testcase_07 AC 238 ms
91,776 KB
testcase_08 AC 236 ms
93,696 KB
testcase_09 AC 117 ms
86,912 KB
testcase_10 AC 216 ms
90,240 KB
testcase_11 AC 360 ms
98,432 KB
testcase_12 AC 283 ms
91,008 KB
testcase_13 AC 201 ms
81,920 KB
testcase_14 AC 303 ms
90,368 KB
testcase_15 AC 221 ms
92,800 KB
testcase_16 AC 304 ms
92,928 KB
testcase_17 AC 348 ms
89,984 KB
testcase_18 AC 361 ms
94,720 KB
testcase_19 AC 100 ms
78,720 KB
testcase_20 AC 301 ms
95,232 KB
testcase_21 AC 112 ms
85,760 KB
testcase_22 AC 146 ms
95,104 KB
testcase_23 AC 343 ms
95,232 KB
testcase_24 AC 366 ms
98,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())

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

for i in range(n):
  dp[i + 1] += dp[i]

print(*dp[-2::-1], sep="\n")
0