結果

問題 No.1478 Simple Sugoroku
ユーザー lloyzlloyz
提出日時 2022-10-21 07:28:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 372 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 88,700 KB
最終ジャッジ日時 2024-06-30 19:34:56
合計ジャッジ時間 4,849 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,552 KB
testcase_01 AC 36 ms
52,616 KB
testcase_02 AC 37 ms
52,704 KB
testcase_03 AC 37 ms
53,296 KB
testcase_04 AC 35 ms
52,640 KB
testcase_05 AC 38 ms
52,280 KB
testcase_06 AC 36 ms
52,620 KB
testcase_07 AC 36 ms
52,312 KB
testcase_08 AC 35 ms
52,700 KB
testcase_09 AC 36 ms
52,984 KB
testcase_10 AC 36 ms
53,004 KB
testcase_11 AC 37 ms
51,964 KB
testcase_12 AC 36 ms
52,032 KB
testcase_13 AC 66 ms
87,808 KB
testcase_14 AC 64 ms
87,380 KB
testcase_15 AC 64 ms
86,632 KB
testcase_16 AC 64 ms
86,836 KB
testcase_17 AC 64 ms
86,668 KB
testcase_18 AC 64 ms
87,452 KB
testcase_19 AC 66 ms
87,648 KB
testcase_20 AC 65 ms
88,292 KB
testcase_21 AC 65 ms
86,972 KB
testcase_22 AC 66 ms
87,764 KB
testcase_23 AC 66 ms
87,596 KB
testcase_24 AC 68 ms
88,700 KB
testcase_25 AC 66 ms
88,060 KB
testcase_26 AC 65 ms
87,276 KB
testcase_27 AC 65 ms
86,752 KB
testcase_28 AC 62 ms
83,736 KB
testcase_29 AC 62 ms
84,320 KB
testcase_30 AC 63 ms
84,588 KB
testcase_31 AC 65 ms
84,816 KB
testcase_32 AC 64 ms
84,388 KB
testcase_33 AC 65 ms
85,652 KB
testcase_34 AC 65 ms
85,084 KB
testcase_35 AC 64 ms
85,120 KB
testcase_36 AC 65 ms
85,368 KB
testcase_37 AC 65 ms
86,412 KB
testcase_38 AC 66 ms
87,384 KB
testcase_39 AC 65 ms
86,816 KB
testcase_40 AC 66 ms
86,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = n - 1
sumB = 0
for i in range(1, m):
    # (ワープから最後のワープまで移動する操作回数+ワープの操作回数の期待値)の平均と考える
    e = (m + sumB) / i
    e += (n - B[m - 1]) + (B[0] - 1)
    ans = min(ans, e)
    sumB += B[m - 1] - B[m - i - 1]
print(ans)
0