結果

問題 No.2154 あさかつの参加人数
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-01 14:02:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 171 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 97,800 KB
最終ジャッジ日時 2024-09-01 14:02:20
合計ジャッジ時間 15,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 461 ms
97,552 KB
testcase_01 AC 424 ms
97,800 KB
testcase_02 AC 456 ms
97,592 KB
testcase_03 AC 422 ms
97,496 KB
testcase_04 AC 432 ms
97,632 KB
testcase_05 AC 224 ms
76,360 KB
testcase_06 AC 353 ms
85,548 KB
testcase_07 AC 245 ms
89,184 KB
testcase_08 AC 265 ms
90,692 KB
testcase_09 AC 110 ms
85,024 KB
testcase_10 AC 230 ms
88,040 KB
testcase_11 AC 382 ms
95,036 KB
testcase_12 AC 340 ms
88,664 KB
testcase_13 AC 213 ms
81,160 KB
testcase_14 AC 332 ms
88,104 KB
testcase_15 AC 230 ms
90,292 KB
testcase_16 AC 352 ms
90,388 KB
testcase_17 AC 366 ms
87,876 KB
testcase_18 AC 376 ms
91,908 KB
testcase_19 AC 114 ms
78,216 KB
testcase_20 AC 315 ms
92,376 KB
testcase_21 AC 104 ms
84,020 KB
testcase_22 AC 135 ms
91,496 KB
testcase_23 AC 353 ms
92,384 KB
testcase_24 AC 393 ms
94,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
q=[0]*n
for i in range(m):
	l,r=map(int,input().split())
	q[-l]+=1
	if r>1:
		q[-r+1]-=1
for i in range(n-1):
	q[i+1]+=q[i]
print(*q,sep="\n")
0