結果

問題 No.1478 Simple Sugoroku
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-04-17 18:59:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,764 KB
最終ジャッジ日時 2024-07-04 02:01:42
合計ジャッジ時間 8,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 27 ms
10,624 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 194 ms
21,672 KB
testcase_14 AC 201 ms
21,620 KB
testcase_15 AC 198 ms
21,672 KB
testcase_16 AC 199 ms
21,488 KB
testcase_17 AC 199 ms
21,476 KB
testcase_18 AC 196 ms
21,584 KB
testcase_19 AC 200 ms
21,636 KB
testcase_20 AC 198 ms
21,628 KB
testcase_21 AC 197 ms
21,764 KB
testcase_22 AC 197 ms
21,508 KB
testcase_23 AC 199 ms
21,764 KB
testcase_24 AC 195 ms
21,512 KB
testcase_25 AC 192 ms
21,636 KB
testcase_26 AC 196 ms
21,508 KB
testcase_27 AC 199 ms
21,504 KB
testcase_28 AC 195 ms
20,660 KB
testcase_29 AC 211 ms
20,732 KB
testcase_30 AC 199 ms
20,852 KB
testcase_31 AC 202 ms
20,732 KB
testcase_32 AC 192 ms
20,724 KB
testcase_33 AC 196 ms
20,716 KB
testcase_34 AC 190 ms
20,712 KB
testcase_35 AC 200 ms
20,580 KB
testcase_36 AC 197 ms
20,840 KB
testcase_37 AC 197 ms
21,472 KB
testcase_38 AC 198 ms
21,208 KB
testcase_39 AC 196 ms
21,204 KB
testcase_40 AC 196 ms
21,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
b = list(map(int, input().split()))
l = [0]
for i in range(m):
    l.append(l[-1] + b[i])
ans = n - 1
for i in range(m - 1):
    ans = min(ans, b[0] - 1 + 1 / (1 - (i + 1) / m) + n - (l[m] - l[i + 1]) / (m - i - 1))
print(ans)
0