結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 42 ms
11,520 KB
testcase_04 AC 160 ms
17,880 KB
testcase_05 AC 159 ms
18,000 KB
testcase_06 AC 159 ms
17,876 KB
testcase_07 AC 162 ms
17,876 KB
testcase_08 AC 164 ms
17,872 KB
testcase_09 AC 163 ms
18,128 KB
testcase_10 AC 168 ms
17,876 KB
testcase_11 AC 163 ms
17,876 KB
testcase_12 AC 154 ms
17,876 KB
testcase_13 AC 51 ms
14,864 KB
testcase_14 AC 30 ms
10,880 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