結果

問題 No.2462 七人カノン
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-09-08 21:50:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 274 ms / 2,000 ms
コード長 329 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 96,160 KB
最終ジャッジ日時 2024-06-26 14:46:07
合計ジャッジ時間 9,468 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,928 KB
testcase_01 AC 47 ms
62,208 KB
testcase_02 AC 47 ms
60,288 KB
testcase_03 AC 56 ms
67,200 KB
testcase_04 AC 53 ms
65,920 KB
testcase_05 AC 60 ms
66,560 KB
testcase_06 AC 55 ms
66,304 KB
testcase_07 AC 53 ms
65,408 KB
testcase_08 AC 54 ms
65,536 KB
testcase_09 AC 55 ms
64,936 KB
testcase_10 AC 57 ms
67,200 KB
testcase_11 AC 57 ms
66,816 KB
testcase_12 AC 56 ms
65,792 KB
testcase_13 AC 229 ms
94,228 KB
testcase_14 AC 234 ms
95,144 KB
testcase_15 AC 223 ms
95,104 KB
testcase_16 AC 248 ms
95,528 KB
testcase_17 AC 251 ms
95,912 KB
testcase_18 AC 66 ms
81,372 KB
testcase_19 AC 66 ms
81,448 KB
testcase_20 AC 267 ms
95,872 KB
testcase_21 AC 263 ms
95,648 KB
testcase_22 AC 265 ms
96,160 KB
testcase_23 AC 264 ms
95,760 KB
testcase_24 AC 194 ms
90,068 KB
testcase_25 AC 274 ms
95,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
m=100000
a=[]
g=[0]*(m+2)
for i in range(q):
	p,s,t=map(int,input().split())
	p-=1
	a.append((p,s,t))
	g[s]+=1
	g[t]-=1
for i in range(m+1):
	g[i]+=g[i-1]
for i in range(m+1):
	if g[i]>0:
		g[i]=1/g[i]
for i in range(m+1):
	g[i]+=g[i-1]
f=[0]*n
for p,s,t in a:
	f[p]+=g[t-1]-g[s-1]
print(*f,sep="\n")
0