結果

問題 No.2154 あさかつの参加人数
ユーザー shobonvipshobonvip
提出日時 2022-12-09 21:24:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 427 ms / 2,000 ms
コード長 190 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 101,888 KB
最終ジャッジ日時 2024-10-14 19:04:58
合計ジャッジ時間 11,983 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
101,504 KB
testcase_01 AC 423 ms
101,504 KB
testcase_02 AC 427 ms
101,888 KB
testcase_03 AC 422 ms
101,504 KB
testcase_04 AC 415 ms
101,760 KB
testcase_05 AC 224 ms
76,160 KB
testcase_06 AC 318 ms
87,168 KB
testcase_07 AC 242 ms
91,776 KB
testcase_08 AC 235 ms
93,568 KB
testcase_09 AC 118 ms
86,912 KB
testcase_10 AC 225 ms
90,368 KB
testcase_11 AC 357 ms
98,560 KB
testcase_12 AC 298 ms
91,136 KB
testcase_13 AC 209 ms
81,920 KB
testcase_14 AC 328 ms
90,112 KB
testcase_15 AC 236 ms
92,800 KB
testcase_16 AC 322 ms
93,312 KB
testcase_17 AC 349 ms
89,984 KB
testcase_18 AC 408 ms
94,208 KB
testcase_19 AC 94 ms
78,080 KB
testcase_20 AC 346 ms
94,976 KB
testcase_21 AC 111 ms
85,632 KB
testcase_22 AC 147 ms
95,104 KB
testcase_23 AC 335 ms
94,976 KB
testcase_24 AC 368 ms
98,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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