結果

問題 No.1478 Simple Sugoroku
ユーザー KudeKude
提出日時 2021-04-16 21:13:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 81,768 KB
実行使用メモリ 88,332 KB
最終ジャッジ日時 2024-07-03 00:20:42
合計ジャッジ時間 3,659 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,356 KB
testcase_01 AC 36 ms
51,908 KB
testcase_02 AC 36 ms
51,904 KB
testcase_03 AC 33 ms
52,152 KB
testcase_04 AC 33 ms
52,620 KB
testcase_05 AC 32 ms
52,028 KB
testcase_06 AC 33 ms
52,024 KB
testcase_07 AC 34 ms
52,860 KB
testcase_08 AC 33 ms
51,504 KB
testcase_09 AC 33 ms
53,172 KB
testcase_10 AC 34 ms
53,616 KB
testcase_11 AC 33 ms
52,600 KB
testcase_12 AC 34 ms
52,628 KB
testcase_13 AC 60 ms
86,904 KB
testcase_14 AC 62 ms
87,436 KB
testcase_15 AC 61 ms
88,332 KB
testcase_16 AC 61 ms
87,704 KB
testcase_17 AC 60 ms
87,512 KB
testcase_18 AC 64 ms
87,628 KB
testcase_19 AC 59 ms
86,676 KB
testcase_20 AC 59 ms
87,288 KB
testcase_21 AC 60 ms
87,672 KB
testcase_22 AC 58 ms
87,120 KB
testcase_23 AC 59 ms
87,312 KB
testcase_24 AC 60 ms
87,476 KB
testcase_25 AC 59 ms
87,228 KB
testcase_26 AC 59 ms
86,984 KB
testcase_27 AC 60 ms
87,248 KB
testcase_28 AC 63 ms
85,080 KB
testcase_29 AC 61 ms
84,812 KB
testcase_30 AC 58 ms
84,612 KB
testcase_31 AC 58 ms
84,488 KB
testcase_32 AC 57 ms
86,040 KB
testcase_33 AC 58 ms
84,752 KB
testcase_34 AC 59 ms
85,968 KB
testcase_35 AC 56 ms
84,632 KB
testcase_36 AC 59 ms
85,180 KB
testcase_37 AC 61 ms
86,788 KB
testcase_38 AC 59 ms
86,664 KB
testcase_39 AC 66 ms
86,536 KB
testcase_40 AC 60 ms
87,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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