結果

問題 No.475 最終日 - Writerの怠慢
ユーザー roarisroaris
提出日時 2019-12-17 22:44:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 529 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-07-04 19:06:15
合計ジャッジ時間 3,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 48 ms
60,160 KB
testcase_03 AC 58 ms
70,272 KB
testcase_04 AC 145 ms
92,096 KB
testcase_05 AC 146 ms
92,544 KB
testcase_06 AC 147 ms
92,032 KB
testcase_07 AC 152 ms
92,032 KB
testcase_08 AC 159 ms
92,032 KB
testcase_09 AC 147 ms
92,228 KB
testcase_10 AC 152 ms
92,244 KB
testcase_11 AC 153 ms
92,032 KB
testcase_12 AC 128 ms
91,136 KB
testcase_13 AC 147 ms
90,996 KB
testcase_14 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def binary_search(ai):
    left, right = 1, N-1
    
    while left<=right:
        mid = (left+right)//2
        
        if ai+50*S+50*S//(0.8+0.2*mid)<=W:
            right = mid-1
        else:
            left = mid+1
    
    return left

N, S, writer_id = map(int, input().split())
a = list(map(int, input().split()))
W = a[writer_id]+100*S
a = [a[i] for i in range(N) if i!=writer_id]
a.sort(reverse=True)
ans = 1

for i in range(N-1):
    j = binary_search(a[i])
    ans *= max(0, N-j-i)
    ans /= N-1-i
    
print(ans)
0