結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 🐬hec🐬hec
提出日時 2016-12-25 00:00:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 465 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,128 KB
最終ジャッジ日時 2024-05-08 13:54:56
合計ジャッジ時間 3,317 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 218 ms
18,996 KB
testcase_07 AC 222 ms
19,116 KB
testcase_08 AC 220 ms
18,992 KB
testcase_09 AC 218 ms
18,988 KB
testcase_10 AC 226 ms
18,988 KB
testcase_11 AC 229 ms
19,124 KB
testcase_12 AC 211 ms
18,480 KB
testcase_13 AC 204 ms
16,220 KB
testcase_14 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

def yukicoder(s,r):
	base=50*s
	bonus=500*s/(8+2*r)
	return base+bonus

n,s,writer_id = list(map(int, input().split()))	
a = list(map(int, input().split()))
writer_score=a[writer_id]+100*s;

b=[]
for i in range(n):
	if i!=writer_id:
		b.append(a[i])

b.sort()

ans=1.0;
total=n-1;

for solved in range(total):
	add_score=yukicoder(s,solved+1);
	valid=bisect.bisect_right(b,writer_score-add_score)
	ans*=1.0*(valid-solved)/(total-solved);	

print(ans)
0