結果

問題 No.1478 Simple Sugoroku
ユーザー okapinokapin
提出日時 2021-04-16 22:00:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 350 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,580 KB
最終ジャッジ日時 2024-07-03 01:47:23
合計ジャッジ時間 4,054 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,496 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 66 ms
22,580 KB
testcase_14 AC 65 ms
21,496 KB
testcase_15 AC 66 ms
22,420 KB
testcase_16 AC 66 ms
22,224 KB
testcase_17 AC 67 ms
22,208 KB
testcase_18 AC 66 ms
21,460 KB
testcase_19 AC 66 ms
21,380 KB
testcase_20 AC 66 ms
21,364 KB
testcase_21 AC 66 ms
22,412 KB
testcase_22 AC 66 ms
21,504 KB
testcase_23 AC 68 ms
21,508 KB
testcase_24 AC 67 ms
21,504 KB
testcase_25 AC 68 ms
21,636 KB
testcase_26 AC 66 ms
21,628 KB
testcase_27 AC 68 ms
21,380 KB
testcase_28 AC 63 ms
20,476 KB
testcase_29 AC 65 ms
20,848 KB
testcase_30 AC 65 ms
20,680 KB
testcase_31 AC 63 ms
20,724 KB
testcase_32 AC 63 ms
20,716 KB
testcase_33 AC 65 ms
20,584 KB
testcase_34 AC 66 ms
20,760 KB
testcase_35 AC 66 ms
20,840 KB
testcase_36 AC 65 ms
20,588 KB
testcase_37 AC 65 ms
21,824 KB
testcase_38 AC 66 ms
21,812 KB
testcase_39 AC 67 ms
21,944 KB
testcase_40 AC 66 ms
21,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if m==1:
    ans=n-1
else:
    tmpsum=n-b[-1]
    for i in range(m-2,-1,-1):
        warp=(tmpsum+m)/(m-i-1)
        normal=n-b[i]
        if warp<normal:
            tmp=warp
            break
        else:
            tmp=normal
            tmpsum+=n-b[i]
    ans=b[0]-1+tmp
print(ans)
0