結果

問題 No.2890 Chiffon
ユーザー 👑 rin204rin204
提出日時 2024-09-13 22:03:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 632 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 194,688 KB
最終ジャッジ日時 2024-09-26 14:40:43
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 48 ms
52,096 KB
testcase_02 AC 46 ms
52,096 KB
testcase_03 AC 37 ms
52,096 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 49 ms
63,744 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
52,608 KB
testcase_11 AC 46 ms
51,968 KB
testcase_12 AC 36 ms
51,968 KB
testcase_13 AC 38 ms
51,584 KB
testcase_14 AC 38 ms
51,840 KB
testcase_15 AC 37 ms
52,236 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
51,712 KB
testcase_20 AC 38 ms
51,840 KB
testcase_21 AC 37 ms
51,584 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 178 ms
194,688 KB
testcase_24 AC 42 ms
58,880 KB
testcase_25 AC 42 ms
58,508 KB
testcase_26 AC 43 ms
58,112 KB
testcase_27 AC 46 ms
61,056 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 42 ms
58,624 KB
testcase_30 AC 44 ms
58,752 KB
testcase_31 AC 48 ms
61,312 KB
testcase_32 AC 47 ms
61,824 KB
testcase_33 AC 44 ms
60,288 KB
testcase_34 AC 122 ms
152,960 KB
testcase_35 AC 120 ms
150,804 KB
testcase_36 AC 121 ms
150,784 KB
testcase_37 AC 122 ms
150,912 KB
testcase_38 AC 122 ms
150,912 KB
testcase_39 AC 120 ms
151,424 KB
testcase_40 AC 120 ms
152,960 KB
testcase_41 AC 118 ms
150,912 KB
testcase_42 AC 120 ms
152,576 KB
testcase_43 AC 124 ms
152,576 KB
testcase_44 AC 120 ms
149,376 KB
testcase_45 AC 122 ms
149,504 KB
testcase_46 AC 124 ms
151,040 KB
testcase_47 AC 125 ms
151,168 KB
testcase_48 AC 124 ms
151,040 KB
testcase_49 AC 123 ms
151,420 KB
testcase_50 AC 123 ms
150,912 KB
testcase_51 AC 126 ms
150,784 KB
testcase_52 AC 123 ms
151,168 KB
testcase_53 AC 125 ms
150,916 KB
testcase_54 AC 90 ms
76,160 KB
testcase_55 AC 94 ms
115,840 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

D = [d // 2 - 1 for d in D]
ans = 1
k = D.index(min(D))
D = D[k:] + D[:k]
ma_d = max(D)
ma = 0
for i in range(D[0] + 1):
    l = 0
    r = ma_d + 1

    def ok(x):
        y = D[0] - i
        for d in D[1:]:
            if y + d < x:
                return False
            y = d - max(0, x - y)

        return y + i >= x

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

    ma = max(ma, l)

ans += ma
print(ans * 2)
0