結果

問題 No.2154 あさかつの参加人数
ユーザー qibqib
提出日時 2023-05-11 20:12:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 426 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 846 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 101,840 KB
最終ジャッジ日時 2024-05-05 17:11:28
合計ジャッジ時間 15,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 413 ms
101,384 KB
testcase_01 AC 425 ms
101,432 KB
testcase_02 AC 418 ms
101,176 KB
testcase_03 AC 426 ms
101,368 KB
testcase_04 AC 418 ms
101,840 KB
testcase_05 AC 211 ms
76,392 KB
testcase_06 AC 344 ms
87,424 KB
testcase_07 AC 258 ms
91,648 KB
testcase_08 AC 232 ms
93,952 KB
testcase_09 AC 133 ms
87,144 KB
testcase_10 AC 224 ms
90,368 KB
testcase_11 AC 379 ms
98,816 KB
testcase_12 AC 308 ms
90,880 KB
testcase_13 AC 205 ms
81,664 KB
testcase_14 AC 312 ms
90,112 KB
testcase_15 AC 224 ms
93,056 KB
testcase_16 AC 320 ms
92,756 KB
testcase_17 AC 346 ms
90,116 KB
testcase_18 AC 366 ms
94,368 KB
testcase_19 AC 90 ms
78,592 KB
testcase_20 AC 336 ms
94,848 KB
testcase_21 AC 111 ms
85,652 KB
testcase_22 AC 148 ms
94,792 KB
testcase_23 AC 348 ms
94,924 KB
testcase_24 AC 386 ms
97,912 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