結果

問題 No.1478 Simple Sugoroku
ユーザー oteraotera
提出日時 2021-03-12 16:20:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,664 KB
最終ジャッジ日時 2024-10-14 02:40:24
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 158 ms
21,664 KB
testcase_14 AC 158 ms
21,484 KB
testcase_15 AC 159 ms
21,664 KB
testcase_16 AC 157 ms
21,360 KB
testcase_17 AC 158 ms
21,620 KB
testcase_18 AC 158 ms
21,584 KB
testcase_19 AC 160 ms
21,508 KB
testcase_20 AC 159 ms
21,372 KB
testcase_21 AC 161 ms
21,496 KB
testcase_22 AC 158 ms
21,504 KB
testcase_23 AC 159 ms
21,376 KB
testcase_24 AC 157 ms
21,508 KB
testcase_25 AC 161 ms
21,508 KB
testcase_26 AC 161 ms
21,508 KB
testcase_27 AC 157 ms
21,384 KB
testcase_28 AC 155 ms
20,652 KB
testcase_29 AC 152 ms
20,724 KB
testcase_30 AC 154 ms
20,724 KB
testcase_31 AC 156 ms
20,724 KB
testcase_32 AC 154 ms
20,728 KB
testcase_33 AC 155 ms
20,708 KB
testcase_34 AC 156 ms
20,704 KB
testcase_35 AC 156 ms
20,708 KB
testcase_36 AC 154 ms
20,580 KB
testcase_37 AC 155 ms
21,080 KB
testcase_38 AC 161 ms
21,340 KB
testcase_39 AC 155 ms
21,212 KB
testcase_40 AC 160 ms
21,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
b = list(map(int, input().split()))

if m == 1:
    print(n - 1)
else:
    ans = float(b[-1] - b[0])
    sum = 0.0
    for i in range(m - 1):
        sum += b[-1] - b[m - 1 - i]
        ans = min(ans, (sum + m) / float(i + 1))
    ans += b[0] + n - 1 - b[-1]
    print("{:.8f}".format(ans))
0