結果

問題 No.1478 Simple Sugoroku
ユーザー toyuzukotoyuzuko
提出日時 2021-04-17 18:00:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 96,896 KB
最終ジャッジ日時 2024-07-04 01:09:37
合計ジャッジ時間 5,177 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,408 KB
testcase_01 AC 36 ms
53,752 KB
testcase_02 AC 34 ms
52,768 KB
testcase_03 AC 35 ms
52,644 KB
testcase_04 AC 34 ms
52,624 KB
testcase_05 AC 34 ms
52,084 KB
testcase_06 AC 33 ms
52,620 KB
testcase_07 AC 33 ms
53,692 KB
testcase_08 AC 37 ms
52,812 KB
testcase_09 AC 35 ms
53,140 KB
testcase_10 AC 36 ms
52,444 KB
testcase_11 AC 35 ms
53,624 KB
testcase_12 AC 36 ms
52,684 KB
testcase_13 AC 71 ms
95,308 KB
testcase_14 AC 73 ms
95,800 KB
testcase_15 AC 69 ms
96,644 KB
testcase_16 AC 70 ms
95,436 KB
testcase_17 AC 69 ms
94,832 KB
testcase_18 AC 71 ms
95,768 KB
testcase_19 AC 72 ms
95,620 KB
testcase_20 AC 72 ms
96,388 KB
testcase_21 AC 70 ms
95,516 KB
testcase_22 AC 74 ms
96,884 KB
testcase_23 AC 75 ms
96,672 KB
testcase_24 AC 72 ms
96,336 KB
testcase_25 AC 71 ms
95,924 KB
testcase_26 AC 70 ms
95,504 KB
testcase_27 AC 74 ms
96,896 KB
testcase_28 AC 71 ms
94,024 KB
testcase_29 AC 70 ms
93,376 KB
testcase_30 AC 70 ms
93,920 KB
testcase_31 AC 70 ms
94,056 KB
testcase_32 AC 69 ms
93,512 KB
testcase_33 AC 68 ms
94,816 KB
testcase_34 AC 68 ms
94,204 KB
testcase_35 AC 70 ms
94,648 KB
testcase_36 AC 75 ms
93,464 KB
testcase_37 AC 72 ms
94,848 KB
testcase_38 AC 71 ms
94,552 KB
testcase_39 AC 71 ms
94,720 KB
testcase_40 AC 69 ms
94,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
B = list(map(int, input().split()))

cum = [0]

for i in range(M):
    cum.append(cum[-1] + B[i])

res = N - 1

for i in range(M - 1):
    cnt = B[0] - 1
    cnt += 1 / (1 - (i + 1) / M)
    cnt += N - (cum[M] - cum[i + 1]) / (M - i - 1)
    res = min(res, cnt)

print(res)
0