結果

問題 No.2154 あさかつの参加人数
ユーザー lloyzlloyz
提出日時 2022-12-09 22:50:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 454 ms / 2,000 ms
コード長 247 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 101,504 KB
最終ジャッジ日時 2024-10-14 22:40:08
合計ジャッジ時間 12,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 454 ms
101,376 KB
testcase_01 AC 450 ms
101,504 KB
testcase_02 AC 454 ms
101,376 KB
testcase_03 AC 447 ms
101,376 KB
testcase_04 AC 448 ms
101,248 KB
testcase_05 AC 232 ms
76,032 KB
testcase_06 AC 383 ms
87,040 KB
testcase_07 AC 266 ms
91,776 KB
testcase_08 AC 248 ms
93,792 KB
testcase_09 AC 122 ms
86,912 KB
testcase_10 AC 243 ms
90,112 KB
testcase_11 AC 404 ms
98,304 KB
testcase_12 AC 340 ms
90,964 KB
testcase_13 AC 232 ms
81,792 KB
testcase_14 AC 366 ms
90,112 KB
testcase_15 AC 249 ms
92,928 KB
testcase_16 AC 345 ms
92,928 KB
testcase_17 AC 394 ms
89,856 KB
testcase_18 AC 409 ms
94,464 KB
testcase_19 AC 93 ms
78,208 KB
testcase_20 AC 337 ms
94,848 KB
testcase_21 AC 113 ms
85,760 KB
testcase_22 AC 148 ms
94,976 KB
testcase_23 AC 380 ms
94,976 KB
testcase_24 AC 419 ms
98,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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