結果

問題 No.475 最終日 - Writerの怠慢
ユーザー maspymaspy
提出日時 2020-03-18 20:23:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 635 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,132 KB
最終ジャッジ日時 2024-05-08 02:39:39
合計ジャッジ時間 2,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 42 ms
11,520 KB
testcase_04 AC 158 ms
18,004 KB
testcase_05 AC 161 ms
18,000 KB
testcase_06 AC 165 ms
18,000 KB
testcase_07 AC 166 ms
18,128 KB
testcase_08 AC 167 ms
18,004 KB
testcase_09 AC 167 ms
18,108 KB
testcase_10 AC 169 ms
18,132 KB
testcase_11 AC 167 ms
18,000 KB
testcase_12 AC 156 ms
18,004 KB
testcase_13 AC 48 ms
15,024 KB
testcase_14 AC 28 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


N, S, writer, *A = map(int, read().split())

me = A[writer] + 100 * S
INF = N + 10
R = [0] * N
for i, x in enumerate(A):
    if i == writer:
        continue
    RHS = me + 1 - x - 50 * S
    if RHS <= 0:
        print(0)
        exit()
    R[i] = 250 * S // RHS - 3

R = [x for i, x in enumerate(R) if i != writer]
R.sort()
R.append(N+100)
cand = 0
i = 0
p = 1
for n in range(1, N):
    while R[i] <= n:
        i += 1
        cand += 1
    p *= cand
    p /= (N - n)
    cand -= 1

print(p)
0