結果

問題 No.475 最終日 - Writerの怠慢
ユーザー tkc60kmphtkc60kmph
提出日時 2016-12-29 19:22:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 510 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 19,156 KB
最終ジャッジ日時 2024-05-08 23:58:04
合計ジャッジ時間 3,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 239 ms
18,612 KB
testcase_13 AC 56 ms
16,244 KB
testcase_14 AC 29 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n, s, wid = map(int, input().split())
a = list(map(int, input().split()))
c = [0]*n
tmp = [0]*n
for i in range(n):
	k = 100*s + a[wid] - a[i] + 1
	if k <= 50*s:
		 print(0.0)
		 exit()
	else:
		c[i] = math.floor(1 + ((4*k - 450*s)/(50*s - k)))
		tmp[c[i]-1] += 1
for i in range(n-1):
	tmp[i+1] = tmp[i+1] + tmp[i]
for i in range(n):
	a[tmp[c[i]-1]-1] = c[i]
	tmp[c[i]-1] -= 1
ans = 1
for i in range(n-1):
	if n - a[n-1-i] > 0:
		ans *= (n-i-a[n-1-i])/(n-1-i)
	else:
		print(0.0)
		exit()
print(ans)
0