結果

問題 No.1478 Simple Sugoroku
ユーザー titiatitia
提出日時 2024-05-08 02:13:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 72 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,788 KB
最終ジャッジ日時 2024-05-08 02:13:44
合計ジャッジ時間 6,554 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 163 ms
21,664 KB
testcase_14 AC 166 ms
21,620 KB
testcase_15 AC 175 ms
21,788 KB
testcase_16 AC 171 ms
21,492 KB
testcase_17 AC 178 ms
21,620 KB
testcase_18 AC 162 ms
21,460 KB
testcase_19 AC 164 ms
21,508 KB
testcase_20 AC 167 ms
21,632 KB
testcase_21 AC 156 ms
21,620 KB
testcase_22 AC 158 ms
21,508 KB
testcase_23 AC 167 ms
21,376 KB
testcase_24 AC 167 ms
21,488 KB
testcase_25 AC 168 ms
21,512 KB
testcase_26 AC 165 ms
21,508 KB
testcase_27 AC 162 ms
21,504 KB
testcase_28 AC 160 ms
20,648 KB
testcase_29 AC 166 ms
19,960 KB
testcase_30 AC 170 ms
19,964 KB
testcase_31 AC 168 ms
20,084 KB
testcase_32 AC 161 ms
19,960 KB
testcase_33 AC 159 ms
20,832 KB
testcase_34 AC 165 ms
20,708 KB
testcase_35 AC 156 ms
20,676 KB
testcase_36 AC 158 ms
20,708 KB
testcase_37 AC 177 ms
21,208 KB
testcase_38 AC 157 ms
21,212 KB
testcase_39 AC 161 ms
21,340 KB
testcase_40 AC 160 ms
21,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline


N,M=map(int,input().split())
B=list(map(int,input().split()))

# 右k個を選ぶとすると、x=k/M,r=1-xとして、
# E = x*(1/(1-r))**2

ANS=N-1
SUM=0

for i in range(1,M):
    SUM+=N-B[M-i]

    x=i/M
    r=1-x

    E=x*(1/(1-r))**2

    ANS2=(B[0]-1)+E+SUM/i

    #print(ANS2)

    if ANS>ANS2:
        ANS=ANS2

print(ANS)
0