結果

問題 No.1478 Simple Sugoroku
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-16 20:54:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 289 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-07-02 23:36:17
合計ジャッジ時間 4,656 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
52,504 KB
testcase_01 AC 45 ms
52,804 KB
testcase_02 AC 41 ms
52,616 KB
testcase_03 AC 39 ms
53,320 KB
testcase_04 AC 39 ms
52,128 KB
testcase_05 AC 39 ms
52,444 KB
testcase_06 AC 38 ms
52,668 KB
testcase_07 AC 39 ms
52,672 KB
testcase_08 AC 38 ms
52,212 KB
testcase_09 AC 38 ms
52,812 KB
testcase_10 AC 39 ms
52,956 KB
testcase_11 AC 39 ms
53,556 KB
testcase_12 AC 39 ms
52,808 KB
testcase_13 AC 74 ms
89,856 KB
testcase_14 AC 81 ms
88,832 KB
testcase_15 AC 72 ms
89,428 KB
testcase_16 AC 81 ms
89,688 KB
testcase_17 AC 72 ms
89,408 KB
testcase_18 AC 80 ms
89,216 KB
testcase_19 AC 71 ms
89,684 KB
testcase_20 AC 81 ms
89,344 KB
testcase_21 AC 71 ms
89,416 KB
testcase_22 AC 81 ms
89,600 KB
testcase_23 AC 73 ms
89,764 KB
testcase_24 AC 82 ms
89,472 KB
testcase_25 AC 72 ms
89,780 KB
testcase_26 AC 81 ms
89,708 KB
testcase_27 AC 73 ms
89,592 KB
testcase_28 AC 77 ms
86,144 KB
testcase_29 AC 69 ms
86,724 KB
testcase_30 AC 79 ms
86,656 KB
testcase_31 AC 68 ms
86,960 KB
testcase_32 AC 77 ms
87,040 KB
testcase_33 AC 70 ms
87,312 KB
testcase_34 AC 80 ms
87,680 KB
testcase_35 AC 70 ms
87,468 KB
testcase_36 AC 81 ms
87,168 KB
testcase_37 AC 72 ms
88,704 KB
testcase_38 AC 80 ms
88,576 KB
testcase_39 AC 72 ms
88,748 KB
testcase_40 AC 80 ms
88,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
B = list(map(int,input().split()))
dp = [10**20]*m
dp[-1] = n-B[-1]
cum = dp[-1]
for i in range(m-1)[::-1]:
    dp[i] = B[i+1]-B[i]+dp[i+1]
    cal = m/(m-i-1)+cum/(m-i-1)
    if cal < dp[i]:
        dp[i] = cal
    cum += dp[i]
ans = dp[0]+B[0]-1
print(ans)
0