結果

問題 No.2389 Cheating Code Golf
ユーザー shobonvipshobonvip
提出日時 2023-07-21 23:04:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 691 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 60,688 KB
最終ジャッジ日時 2024-09-22 00:35:14
合計ジャッジ時間 3,396 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,876 KB
testcase_01 AC 34 ms
52,456 KB
testcase_02 AC 36 ms
53,748 KB
testcase_03 AC 37 ms
53,540 KB
testcase_04 AC 42 ms
58,992 KB
testcase_05 AC 36 ms
52,272 KB
testcase_06 AC 35 ms
53,224 KB
testcase_07 AC 33 ms
53,332 KB
testcase_08 WA -
testcase_09 AC 34 ms
51,684 KB
testcase_10 AC 39 ms
52,400 KB
testcase_11 AC 35 ms
53,416 KB
testcase_12 AC 34 ms
52,496 KB
testcase_13 AC 35 ms
52,136 KB
testcase_14 AC 34 ms
53,084 KB
testcase_15 AC 34 ms
53,140 KB
testcase_16 AC 36 ms
52,420 KB
testcase_17 AC 35 ms
53,608 KB
testcase_18 AC 35 ms
52,196 KB
testcase_19 AC 36 ms
53,008 KB
testcase_20 AC 35 ms
52,592 KB
testcase_21 AC 35 ms
52,428 KB
testcase_22 AC 35 ms
52,560 KB
testcase_23 AC 35 ms
52,216 KB
testcase_24 AC 35 ms
52,704 KB
testcase_25 AC 35 ms
53,932 KB
testcase_26 AC 35 ms
52,296 KB
testcase_27 AC 33 ms
53,352 KB
testcase_28 AC 35 ms
52,540 KB
testcase_29 AC 36 ms
53,024 KB
testcase_30 AC 37 ms
52,352 KB
testcase_31 AC 36 ms
52,316 KB
testcase_32 AC 35 ms
52,576 KB
testcase_33 AC 35 ms
53,216 KB
testcase_34 AC 35 ms
52,484 KB
testcase_35 AC 36 ms
52,508 KB
testcase_36 AC 36 ms
53,112 KB
testcase_37 AC 34 ms
52,832 KB
testcase_38 AC 35 ms
52,960 KB
testcase_39 AC 35 ms
52,368 KB
testcase_40 AC 34 ms
53,316 KB
testcase_41 AC 36 ms
52,864 KB
testcase_42 AC 35 ms
52,616 KB
testcase_43 AC 34 ms
53,448 KB
testcase_44 AC 34 ms
52,208 KB
testcase_45 AC 35 ms
52,204 KB
testcase_46 AC 35 ms
53,684 KB
testcase_47 AC 34 ms
53,944 KB
testcase_48 AC 34 ms
52,728 KB
testcase_49 AC 35 ms
53,476 KB
testcase_50 AC 36 ms
52,816 KB
testcase_51 AC 35 ms
53,596 KB
testcase_52 AC 35 ms
52,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

nn, m = map(int,input().split())
d = []

n = 0
ans = 0
nans = 0
for i in range(nn):
	a, b, p = map(int,input().split())
	if a <= b:
		ans += 1 / a
	elif p == 1:
		ans += 1 / b
	else:
		d.append((a, b, p))
		n += 1


d.sort(key= lambda x:(-(x[0]-x[1])/(x[1]*x[0]*x[2]), x[0]))

dp = [0.0] * (n+1)
dp[0] = 1.0
for i in range(m):
	ndp = [0.0] * (n+1)
	for j in range(n+1):
		tar = 1.0
		for k in range(j, n):
			ndp[k] += dp[j] * tar * (1 - 1/d[k][2])
			tar *= 1/d[k][2]
		ndp[n] += dp[j] * tar
	dp = ndp

tmp = 0.0
for i in range(n): tmp += 1 / d[i][0]

#print(tmp)
for i in range(n+1):
	ans += tmp * dp[i]
	if i < n:
		tmp -= 1 / d[i][0]
		tmp += 1 / d[i][1]
	#print(tmp, dp[i])
	
print(ans)
0