結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 6soukiti296soukiti29
提出日時 2017-03-22 20:40:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 172 ms / 2,000 ms
コード長 451 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,984 KB
最終ジャッジ日時 2024-07-05 17:46:07
合計ジャッジ時間 1,996 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 30 ms
11,520 KB
testcase_04 AC 91 ms
18,900 KB
testcase_05 AC 107 ms
18,852 KB
testcase_06 AC 88 ms
18,720 KB
testcase_07 AC 106 ms
18,856 KB
testcase_08 AC 103 ms
18,984 KB
testcase_09 AC 172 ms
18,848 KB
testcase_10 AC 127 ms
18,976 KB
testcase_11 AC 108 ms
18,852 KB
testcase_12 AC 67 ms
18,196 KB
testcase_13 AC 67 ms
16,532 KB
testcase_14 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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 + (500 * S) // (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 - 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