結果

問題 No.2890 Chiffon
ユーザー 👑 rin204rin204
提出日時 2024-09-13 21:47:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 3,384 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 203,452 KB
最終ジャッジ日時 2024-09-13 21:48:23
合計ジャッジ時間 6,346 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 41 ms
52,096 KB
testcase_06 AC 43 ms
52,224 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 42 ms
51,712 KB
testcase_11 WA -
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 42 ms
52,224 KB
testcase_14 AC 42 ms
51,712 KB
testcase_15 AC 43 ms
51,712 KB
testcase_16 WA -
testcase_17 AC 42 ms
52,352 KB
testcase_18 AC 42 ms
52,096 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 222 ms
203,452 KB
testcase_23 AC 50 ms
58,624 KB
testcase_24 AC 47 ms
58,032 KB
testcase_25 WA -
testcase_26 AC 55 ms
61,440 KB
testcase_27 AC 44 ms
52,096 KB
testcase_28 AC 49 ms
57,984 KB
testcase_29 WA -
testcase_30 AC 64 ms
61,824 KB
testcase_31 AC 55 ms
62,080 KB
testcase_32 AC 80 ms
60,288 KB
testcase_33 AC 120 ms
128,384 KB
testcase_34 AC 117 ms
126,444 KB
testcase_35 AC 117 ms
126,412 KB
testcase_36 AC 119 ms
126,140 KB
testcase_37 AC 116 ms
126,080 KB
testcase_38 AC 117 ms
126,336 KB
testcase_39 AC 149 ms
127,872 KB
testcase_40 AC 117 ms
126,336 KB
testcase_41 AC 118 ms
128,012 KB
testcase_42 AC 119 ms
128,000 KB
testcase_43 AC 118 ms
126,336 KB
testcase_44 AC 118 ms
126,336 KB
testcase_45 AC 119 ms
128,384 KB
testcase_46 AC 121 ms
128,128 KB
testcase_47 AC 122 ms
128,428 KB
testcase_48 AC 107 ms
127,708 KB
testcase_49 AC 137 ms
127,512 KB
testcase_50 AC 121 ms
127,744 KB
testcase_51 AC 125 ms
127,488 KB
testcase_52 AC 101 ms
127,776 KB
testcase_53 WA -
testcase_54 AC 87 ms
102,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
b = A[-1] - 2 * n
D = []
for a in A:
    D.append(a - b)
    b = a

ans = min(D)
D = [d - ans for d in D]
D = [d // 2 for d in D]
ans //= 2
k = D.index(0)
D = D[k:] + D[:k]
D = D[1:]


def ok(x):
    y = 0
    for d in D:
        if y + d < x:
            return False

        add = max(0, x - y)
        y = d - add

    return y >= 0


l = min(D)
r = max(D) + 1
while r - l > 1:
    mid = (l + r) // 2
    if ok(mid):
        l = mid
    else:
        r = mid

ans += l
print(ans * 2)
0