結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 6soukiti296soukiti29
提出日時 2017-03-22 20:10:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,976 KB
最終ジャッジ日時 2024-07-05 17:45:51
合計ジャッジ時間 2,407 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 35 ms
11,520 KB
testcase_04 AC 115 ms
18,976 KB
testcase_05 AC 131 ms
18,724 KB
testcase_06 AC 106 ms
18,728 KB
testcase_07 AC 134 ms
18,720 KB
testcase_08 AC 127 ms
18,724 KB
testcase_09 AC 226 ms
18,852 KB
testcase_10 AC 159 ms
18,972 KB
testcase_11 AC 138 ms
18,724 KB
testcase_12 AC 83 ms
18,316 KB
testcase_13 AC 88 ms
16,400 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S,id = map(int,input().split())
A1 = list(map(int,input().split()))
writer = A1[id] + 100 * S
A1.pop(id)
A = sorted(A1, reverse = True)
P = 1
J = [50 * S + (50 * S) // (0.8 + 0.2 * i) for i in range(1,N + 1)]
if A[0] > writer:
	print(0)
else:
	for ai,a in enumerate(A):
		p = 0
		for i in range(N - ai - 1):
			if J[i] + a > writer:
				p = p + 1
			else:
				break
		if p == 0:
			break
		P = P * (1 - p / (N - ai - 1))
		if P == 0:
			break
	print(P)
0