結果

問題 No.1478 Simple Sugoroku
ユーザー okapinokapin
提出日時 2021-04-16 21:56:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 328 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,792 KB
最終ジャッジ日時 2024-07-03 01:39:24
合計ジャッジ時間 4,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 34 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 64 ms
21,792 KB
testcase_14 AC 65 ms
21,540 KB
testcase_15 AC 65 ms
21,664 KB
testcase_16 AC 65 ms
21,364 KB
testcase_17 AC 65 ms
21,492 KB
testcase_18 AC 66 ms
21,460 KB
testcase_19 AC 68 ms
21,508 KB
testcase_20 AC 65 ms
21,564 KB
testcase_21 AC 65 ms
21,492 KB
testcase_22 AC 66 ms
21,508 KB
testcase_23 AC 66 ms
21,508 KB
testcase_24 AC 66 ms
21,384 KB
testcase_25 AC 66 ms
21,380 KB
testcase_26 AC 67 ms
21,504 KB
testcase_27 AC 66 ms
21,512 KB
testcase_28 AC 63 ms
20,396 KB
testcase_29 AC 64 ms
20,728 KB
testcase_30 AC 64 ms
20,728 KB
testcase_31 AC 64 ms
20,728 KB
testcase_32 AC 64 ms
20,596 KB
testcase_33 AC 64 ms
20,576 KB
testcase_34 AC 64 ms
20,704 KB
testcase_35 AC 63 ms
20,832 KB
testcase_36 AC 64 ms
20,836 KB
testcase_37 AC 65 ms
21,088 KB
testcase_38 AC 65 ms
21,336 KB
testcase_39 AC 66 ms
21,208 KB
testcase_40 AC 65 ms
21,212 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:
            tmpsum+=n-b[i]
    ans=b[0]-1+warp
print(ans)
0