結果

問題 No.1478 Simple Sugoroku
ユーザー eijiroueijirou
提出日時 2021-04-16 21:36:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 393 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 87,764 KB
最終ジャッジ日時 2024-07-03 01:00:46
合計ジャッジ時間 4,613 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
51,884 KB
testcase_01 AC 39 ms
51,724 KB
testcase_02 AC 43 ms
51,712 KB
testcase_03 AC 42 ms
51,760 KB
testcase_04 AC 38 ms
51,760 KB
testcase_05 AC 40 ms
51,964 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 39 ms
51,552 KB
testcase_08 AC 39 ms
52,420 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 AC 38 ms
51,968 KB
testcase_11 AC 38 ms
52,020 KB
testcase_12 AC 38 ms
51,952 KB
testcase_13 AC 81 ms
87,424 KB
testcase_14 AC 76 ms
86,692 KB
testcase_15 AC 82 ms
87,452 KB
testcase_16 AC 78 ms
87,660 KB
testcase_17 AC 83 ms
87,152 KB
testcase_18 AC 77 ms
86,804 KB
testcase_19 AC 83 ms
87,632 KB
testcase_20 AC 77 ms
87,504 KB
testcase_21 AC 82 ms
87,248 KB
testcase_22 AC 81 ms
87,136 KB
testcase_23 AC 83 ms
87,204 KB
testcase_24 AC 79 ms
87,764 KB
testcase_25 AC 82 ms
87,196 KB
testcase_26 AC 82 ms
87,368 KB
testcase_27 AC 85 ms
87,220 KB
testcase_28 AC 77 ms
84,112 KB
testcase_29 AC 79 ms
84,956 KB
testcase_30 AC 78 ms
84,752 KB
testcase_31 AC 78 ms
84,516 KB
testcase_32 AC 75 ms
84,644 KB
testcase_33 AC 80 ms
85,624 KB
testcase_34 AC 75 ms
85,096 KB
testcase_35 AC 77 ms
85,272 KB
testcase_36 AC 75 ms
85,240 KB
testcase_37 AC 77 ms
86,632 KB
testcase_38 AC 82 ms
86,284 KB
testcase_39 AC 77 ms
86,632 KB
testcase_40 AC 81 ms
86,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n, m = map(int, input().split())
    n = float(n)
    b = list(map(float, input().split()))

    if m == 1:
        print(n - 1.0)
        return

    cumsum = [0.0] * m
    cumsum[m-1] = n - b[m-1]
    for i in range(1, m):
        cnt = m/i + cumsum[m-i]/i
        cumsum[m-i-1] = cumsum[m-i] + min(n-b[m-i-1],cnt)

    print(min(n-1.0, b[0]-1.0+cumsum[0]-cumsum[1]))

main()
0