結果

問題 No.475 最終日 - Writerの怠慢
ユーザー roarisroaris
提出日時 2019-12-17 23:07:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 88,320 KB
最終ジャッジ日時 2024-07-04 21:20:45
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 49 ms
64,000 KB
testcase_04 AC 83 ms
87,936 KB
testcase_05 AC 84 ms
87,936 KB
testcase_06 AC 82 ms
88,192 KB
testcase_07 AC 86 ms
88,064 KB
testcase_08 AC 83 ms
87,680 KB
testcase_09 AC 83 ms
87,808 KB
testcase_10 AC 83 ms
88,192 KB
testcase_11 AC 83 ms
88,320 KB
testcase_12 AC 64 ms
84,352 KB
testcase_13 AC 71 ms
86,144 KB
testcase_14 AC 36 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
j = N
ans = 1

for i in range(N-1):
    while a[i]+50*S+250*S//(4+j-1)<=W and j>1:
        j -= 1

    ans *= max(0, N-j-i)
    ans /= N-1-i

print(ans)
0