結果

問題 No.1478 Simple Sugoroku
ユーザー brthyyjpbrthyyjp
提出日時 2022-01-29 19:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,920 KB
実行使用メモリ 101,696 KB
最終ジャッジ日時 2024-06-10 18:43:13
合計ジャッジ時間 6,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,304 KB
testcase_01 AC 34 ms
53,120 KB
testcase_02 AC 35 ms
52,952 KB
testcase_03 AC 35 ms
52,696 KB
testcase_04 AC 34 ms
53,424 KB
testcase_05 AC 35 ms
53,236 KB
testcase_06 AC 33 ms
53,160 KB
testcase_07 AC 35 ms
52,696 KB
testcase_08 AC 33 ms
53,284 KB
testcase_09 AC 33 ms
53,084 KB
testcase_10 AC 33 ms
52,476 KB
testcase_11 AC 34 ms
53,896 KB
testcase_12 AC 35 ms
52,400 KB
testcase_13 AC 99 ms
99,640 KB
testcase_14 AC 93 ms
99,908 KB
testcase_15 AC 94 ms
100,288 KB
testcase_16 AC 94 ms
100,012 KB
testcase_17 AC 98 ms
100,276 KB
testcase_18 AC 98 ms
100,024 KB
testcase_19 AC 101 ms
99,684 KB
testcase_20 AC 102 ms
99,848 KB
testcase_21 AC 101 ms
99,592 KB
testcase_22 AC 99 ms
99,748 KB
testcase_23 AC 96 ms
100,060 KB
testcase_24 AC 96 ms
100,008 KB
testcase_25 AC 96 ms
100,056 KB
testcase_26 AC 99 ms
100,152 KB
testcase_27 AC 100 ms
99,892 KB
testcase_28 AC 80 ms
98,776 KB
testcase_29 AC 101 ms
100,516 KB
testcase_30 AC 102 ms
100,592 KB
testcase_31 AC 105 ms
100,384 KB
testcase_32 AC 104 ms
100,440 KB
testcase_33 AC 105 ms
101,104 KB
testcase_34 AC 105 ms
101,376 KB
testcase_35 AC 106 ms
101,200 KB
testcase_36 AC 106 ms
100,944 KB
testcase_37 AC 106 ms
101,696 KB
testcase_38 AC 101 ms
101,152 KB
testcase_39 AC 102 ms
101,464 KB
testcase_40 AC 103 ms
101,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [0]*m
for i, b in enumerate(B):
    A[i] = n-b
C = [0]+A
from itertools import accumulate
C = list(accumulate(C))
ans = float('inf')
for i in range(m):
    y = m*(C[m]-C[i]+i)
    if (m-i)*A[i] <= m*(C[m]-C[i]+i):
        x = y/(m-i)
        ans = min(ans, B[0]-1+min(x/m+1, n-B[0]))
print(ans)
0