結果

問題 No.475 最終日 - Writerの怠慢
ユーザー shotoyooshotoyoo
提出日時 2021-07-02 01:14:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 726 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 89,252 KB
最終ジャッジ日時 2024-06-28 13:46:57
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,212 KB
testcase_01 AC 38 ms
52,692 KB
testcase_02 AC 46 ms
61,040 KB
testcase_03 AC 61 ms
72,036 KB
testcase_04 AC 103 ms
89,040 KB
testcase_05 AC 103 ms
88,904 KB
testcase_06 AC 102 ms
89,180 KB
testcase_07 AC 112 ms
89,252 KB
testcase_08 AC 111 ms
88,880 KB
testcase_09 AC 102 ms
89,224 KB
testcase_10 AC 109 ms
88,756 KB
testcase_11 AC 102 ms
88,864 KB
testcase_12 AC 87 ms
87,680 KB
testcase_13 AC 67 ms
80,956 KB
testcase_14 AC 39 ms
52,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n,s,wid = list(map(int, input().split()))
a = list(map(int, input().split()))
w = a[wid] + 100*s
a.pop(wid)
a.sort(reverse=1)
vals = [int(50*s + (50*s / (0.8 + 0.2*i))) for i in range(1, n)[::-1]]
from bisect import bisect_right as br
ans = 1
j = 0
l = list(range(1,n))
for i in range(n-1):
    v = br(vals, w - a[i])
    if v<=i:
        ans = 0
        break
    ans *= (v-i)
    while j<len(l) and ans>l[j]:
        ans /= l[j]
        j += 1
for k in range(j, len(l)):
    ans /= l[k]
print(ans)
0