結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 6soukiti296soukiti29
提出日時 2017-03-22 18:25:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 695 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-07-05 17:45:03
合計ジャッジ時間 4,226 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
88,704 KB
testcase_01 AC 113 ms
88,320 KB
testcase_02 AC 120 ms
88,448 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 242 ms
104,044 KB
testcase_07 AC 252 ms
103,852 KB
testcase_08 AC 251 ms
104,064 KB
testcase_09 AC 352 ms
104,044 KB
testcase_10 AC 287 ms
104,448 KB
testcase_11 AC 274 ms
103,936 KB
testcase_12 AC 182 ms
103,636 KB
testcase_13 AC 184 ms
103,192 KB
testcase_14 AC 111 ms
88,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from fractions import Fraction
N,S,id = map(int,input().split())
A = list(map(int,input().split()))
writer = A.pop(id) + 100 * S
A.sort()
A.reverse()
P = 1
J = [50 * S * Fraction(18 + 2 * i, 8 + 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):
			if J[i] + a > writer:
				p = p + 1
			else:
				break
		if p == 0:
			break
		P = P * (1 - Fraction(p,N - ai - 1))
		if P == 0:
			break
	print(float(P))
0