結果

問題 No.475 最終日 - Writerの怠慢
ユーザー kimiyukikimiyuki
提出日時 2016-12-25 04:07:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 189 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,692 KB
最終ジャッジ日時 2024-06-06 10:45:01
合計ジャッジ時間 2,631 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 43 ms
11,648 KB
testcase_04 AC 175 ms
19,440 KB
testcase_05 AC 189 ms
19,564 KB
testcase_06 AC 164 ms
19,564 KB
testcase_07 AC 165 ms
19,692 KB
testcase_08 AC 162 ms
19,560 KB
testcase_09 AC 163 ms
19,560 KB
testcase_10 AC 164 ms
19,432 KB
testcase_11 AC 168 ms
19,564 KB
testcase_12 AC 145 ms
18,548 KB
testcase_13 AC 154 ms
16,052 KB
testcase_14 AC 26 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
n, s, writer_id = map(int, input().split())
a = list(map(int, input().split()))
score = lambda r: 50 * s + 250 * s // (4 + r)
self = a[writer_id] + score(1)
del a[writer_id]
a.sort()
p = 1.0
i = 0
for r in range(1, n):
    while i < len(a) and a[i] + score(r) <= self:
        i += 1
    p *= max(0, i-(r-1)) / (n-1 - (r-1))
print('%.12f' % p)
0