結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 492 ms
43,972 KB
testcase_01 AC 495 ms
43,472 KB
testcase_02 AC 496 ms
44,136 KB
testcase_03 AC 507 ms
44,108 KB
testcase_04 AC 623 ms
48,832 KB
testcase_05 AC 672 ms
48,576 KB
testcase_06 AC 606 ms
48,836 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 846 ms
48,844 KB
testcase_10 WA -
testcase_11 AC 648 ms
48,840 KB
testcase_12 AC 570 ms
47,948 KB
testcase_13 AC 564 ms
47,868 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy
N,S,id = map(int,input().split())
A1 = numpy.array(list(map(int,input().split())))
writer = A1[id] + 100 * S
numpy.delete(A1,id)
A = sorted(A1, reverse = True)
P = 1
J = numpy.array([50 * S * (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 - ai - 1):
			if J[i] + a > writer + 1:
				p = p + 1
			else:
				break
		if p == 0:
			break
		P = P * (1 - p / (N - ai - 1))
		if P == 0:
			break

	print(float(P))
0