結果

問題 No.2890 Chiffon
ユーザー 👑 rin204rin204
提出日時 2024-09-13 21:43:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 574 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 198,832 KB
最終ジャッジ日時 2024-09-13 21:43:11
合計ジャッジ時間 5,845 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,096 KB
testcase_11 WA -
testcase_12 AC 40 ms
51,584 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 40 ms
51,840 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 37 ms
52,096 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 187 ms
198,832 KB
testcase_23 AC 43 ms
57,856 KB
testcase_24 AC 41 ms
57,856 KB
testcase_25 WA -
testcase_26 AC 46 ms
60,160 KB
testcase_27 AC 38 ms
51,968 KB
testcase_28 AC 46 ms
58,112 KB
testcase_29 WA -
testcase_30 AC 45 ms
60,416 KB
testcase_31 AC 45 ms
60,288 KB
testcase_32 AC 45 ms
60,032 KB
testcase_33 AC 101 ms
126,208 KB
testcase_34 AC 100 ms
123,520 KB
testcase_35 AC 99 ms
124,032 KB
testcase_36 AC 116 ms
123,904 KB
testcase_37 AC 99 ms
124,416 KB
testcase_38 AC 101 ms
124,032 KB
testcase_39 AC 102 ms
126,000 KB
testcase_40 AC 99 ms
123,520 KB
testcase_41 AC 116 ms
125,568 KB
testcase_42 AC 100 ms
125,312 KB
testcase_43 AC 101 ms
124,212 KB
testcase_44 AC 108 ms
124,288 KB
testcase_45 AC 100 ms
125,312 KB
testcase_46 AC 100 ms
125,988 KB
testcase_47 AC 102 ms
125,824 KB
testcase_48 AC 100 ms
125,312 KB
testcase_49 AC 100 ms
126,080 KB
testcase_50 AC 99 ms
126,080 KB
testcase_51 AC 116 ms
125,824 KB
testcase_52 AC 101 ms
125,312 KB
testcase_53 WA -
testcase_54 AC 80 ms
100,352 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]
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
        if y >= x:
            y = d
        else:
            y = d - (x - y)
    return y >= 0


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

ans += l
if ans % 2 == 1:
    ans -= 1

print(ans)
0