結果

問題 No.1478 Simple Sugoroku
ユーザー ayaoniayaoni
提出日時 2021-04-16 20:33:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 894 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 91,132 KB
最終ジャッジ日時 2024-07-02 22:56:05
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,748 KB
testcase_01 AC 35 ms
54,212 KB
testcase_02 AC 38 ms
53,076 KB
testcase_03 AC 44 ms
53,544 KB
testcase_04 AC 40 ms
53,624 KB
testcase_05 AC 39 ms
52,712 KB
testcase_06 AC 38 ms
53,048 KB
testcase_07 AC 37 ms
52,628 KB
testcase_08 AC 35 ms
53,372 KB
testcase_09 AC 37 ms
54,204 KB
testcase_10 AC 36 ms
52,672 KB
testcase_11 AC 33 ms
52,364 KB
testcase_12 AC 33 ms
53,664 KB
testcase_13 AC 100 ms
90,668 KB
testcase_14 AC 97 ms
90,184 KB
testcase_15 AC 97 ms
90,928 KB
testcase_16 AC 93 ms
91,092 KB
testcase_17 AC 97 ms
90,392 KB
testcase_18 AC 106 ms
90,564 KB
testcase_19 AC 104 ms
91,084 KB
testcase_20 AC 101 ms
91,132 KB
testcase_21 AC 99 ms
90,372 KB
testcase_22 AC 99 ms
91,052 KB
testcase_23 AC 104 ms
90,428 KB
testcase_24 AC 101 ms
90,932 KB
testcase_25 AC 95 ms
91,116 KB
testcase_26 AC 97 ms
90,828 KB
testcase_27 AC 95 ms
90,436 KB
testcase_28 AC 90 ms
89,868 KB
testcase_29 AC 87 ms
90,200 KB
testcase_30 AC 86 ms
90,036 KB
testcase_31 AC 86 ms
90,120 KB
testcase_32 AC 87 ms
89,528 KB
testcase_33 AC 85 ms
90,328 KB
testcase_34 AC 86 ms
90,076 KB
testcase_35 AC 89 ms
90,500 KB
testcase_36 AC 87 ms
90,256 KB
testcase_37 AC 90 ms
90,312 KB
testcase_38 AC 94 ms
90,644 KB
testcase_39 AC 93 ms
90,856 KB
testcase_40 AC 89 ms
90,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
B = LI()
B.reverse()


def f(a):
    cur = N
    ex = 0
    s = 0
    for i in range(M):
        b = B[i]
        ex += cur-(b+1)
        m = min(a+1,ex+1)
        ex = m
        s += m
        cur = b
    ex += cur-1

    if s >= a*M:
        return True,ex
    return False,ex


ok = 0
ng = 10**10
while ng-ok >= 10**-5:
    mid = (ok+ng)/2
    b,e = f(mid)
    if b:
        ok = mid
    else:
        ng = mid

print(f(ok)[1])
0