結果

問題 No.2154 あさかつの参加人数
ユーザー ch1channnch1channn
提出日時 2022-12-11 23:42:11
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 414 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-10-15 18:44:33
合計ジャッジ時間 12,882 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
80,768 KB
testcase_01 AC 439 ms
80,560 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 441 ms
80,468 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 290 ms
79,092 KB
testcase_08 AC 246 ms
79,232 KB
testcase_09 AC 121 ms
78,456 KB
testcase_10 AC 238 ms
78,844 KB
testcase_11 RE -
testcase_12 AC 337 ms
78,848 KB
testcase_13 RE -
testcase_14 AC 358 ms
78,416 KB
testcase_15 AC 233 ms
79,488 KB
testcase_16 AC 345 ms
79,232 KB
testcase_17 AC 387 ms
78,592 KB
testcase_18 RE -
testcase_19 AC 104 ms
76,716 KB
testcase_20 RE -
testcase_21 AC 115 ms
78,720 KB
testcase_22 AC 146 ms
80,660 KB
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
if sys.platform =='ios':
	import clipboard
	a=clipboard.get()
	a = a.split('\n')
	text = '\n'.join(a)
	with open('input_file.txt','w') as f:
		f.write(text)
	sys.stdin = open('input_file.txt')
	
n,m = map(int,input().split())
dp = [0]*n
for i in range(m):
	l,r = map(int,input().split())
	dp[l] -= 1
	dp[r-1] += 1
	

for i in range(1,n):
	dp[i] = dp[i]+dp[i-1]
	
for i in range(n-1,-1,-1):
	print(dp[i])
0