結果

問題 No.1478 Simple Sugoroku
ユーザー ygd.ygd.
提出日時 2021-04-16 21:16:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 91,392 KB
最終ジャッジ日時 2024-07-03 00:29:03
合計ジャッジ時間 4,054 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 38 ms
51,328 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 37 ms
52,196 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 38 ms
51,584 KB
testcase_12 AC 39 ms
52,096 KB
testcase_13 AC 69 ms
89,984 KB
testcase_14 AC 68 ms
89,472 KB
testcase_15 AC 69 ms
90,496 KB
testcase_16 AC 69 ms
90,368 KB
testcase_17 AC 69 ms
90,368 KB
testcase_18 AC 69 ms
90,112 KB
testcase_19 AC 70 ms
90,488 KB
testcase_20 AC 69 ms
90,368 KB
testcase_21 AC 68 ms
90,368 KB
testcase_22 AC 70 ms
89,984 KB
testcase_23 AC 71 ms
89,984 KB
testcase_24 AC 69 ms
89,856 KB
testcase_25 AC 70 ms
90,344 KB
testcase_26 AC 69 ms
89,728 KB
testcase_27 AC 70 ms
90,624 KB
testcase_28 AC 67 ms
87,168 KB
testcase_29 AC 89 ms
91,136 KB
testcase_30 AC 88 ms
91,136 KB
testcase_31 AC 88 ms
90,624 KB
testcase_32 AC 89 ms
91,392 KB
testcase_33 AC 69 ms
87,552 KB
testcase_34 AC 70 ms
87,552 KB
testcase_35 AC 69 ms
87,680 KB
testcase_36 AC 68 ms
88,576 KB
testcase_37 AC 70 ms
89,472 KB
testcase_38 AC 70 ms
89,600 KB
testcase_39 AC 69 ms
88,960 KB
testcase_40 AC 68 ms
89,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
B = list(map(int,input().split()))
PB = [-1]*M
S = 0
cnt = 0
for i in reversed(range(M)):
    if i == M-1:
        PB[i] = N - B[i]
        S += PB[i]
        cnt += 1
    else:
        p_walk = PB[i+1] + (B[i+1] - B[i]) #ワープしない場合
        p_warp = (S+M)*(M-cnt)/(cnt*(M-cnt))
        #print(i,S,M-cnt,p_walk,p_warp)
        if p_walk < p_warp:
            PB[i] = p_walk
            S += PB[i]
            cnt += 1
        else:
            PB[i] = p_warp
#print(PB)
ans = PB[0] + B[0] - 1
print(ans)
0