結果

問題 No.475 最終日 - Writerの怠慢
ユーザー 🐬hec🐬hec
提出日時 2016-12-25 00:21:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,076 KB
最終ジャッジ日時 2024-06-06 10:42:35
合計ジャッジ時間 2,776 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 39 ms
11,520 KB
testcase_04 AC 174 ms
19,076 KB
testcase_05 AC 171 ms
18,992 KB
testcase_06 AC 167 ms
18,864 KB
testcase_07 AC 173 ms
18,988 KB
testcase_08 AC 171 ms
18,996 KB
testcase_09 AC 169 ms
18,864 KB
testcase_10 AC 174 ms
18,988 KB
testcase_11 AC 170 ms
18,732 KB
testcase_12 AC 151 ms
18,472 KB
testcase_13 AC 155 ms
16,092 KB
testcase_14 AC 29 ms
10,752 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*=(valid-solved)/(total-solved);	

print(ans)
0