結果

問題 No.2890 Chiffon
ユーザー 👑 rin204rin204
提出日時 2024-09-13 21:37:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 538 bytes
コンパイル時間 503 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 198,576 KB
最終ジャッジ日時 2024-09-13 21:37:59
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 39 ms
51,840 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 39 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 39 ms
51,840 KB
testcase_18 WA -
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 38 ms
52,480 KB
testcase_21 AC 39 ms
51,712 KB
testcase_22 AC 184 ms
198,576 KB
testcase_23 AC 44 ms
58,368 KB
testcase_24 AC 42 ms
57,856 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 39 ms
51,840 KB
testcase_28 AC 43 ms
57,472 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 52 ms
60,288 KB
testcase_32 AC 44 ms
59,904 KB
testcase_33 AC 103 ms
125,824 KB
testcase_34 AC 102 ms
124,032 KB
testcase_35 AC 102 ms
124,288 KB
testcase_36 AC 102 ms
123,776 KB
testcase_37 AC 106 ms
123,904 KB
testcase_38 AC 101 ms
124,288 KB
testcase_39 AC 103 ms
125,952 KB
testcase_40 AC 102 ms
124,288 KB
testcase_41 AC 103 ms
125,568 KB
testcase_42 AC 102 ms
126,336 KB
testcase_43 AC 103 ms
124,248 KB
testcase_44 AC 102 ms
124,804 KB
testcase_45 AC 105 ms
126,312 KB
testcase_46 AC 106 ms
126,080 KB
testcase_47 AC 104 ms
125,824 KB
testcase_48 AC 118 ms
125,620 KB
testcase_49 AC 104 ms
125,648 KB
testcase_50 AC 117 ms
125,952 KB
testcase_51 AC 103 ms
125,952 KB
testcase_52 AC 103 ms
126,208 KB
testcase_53 WA -
testcase_54 AC 82 ms
101,248 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 >= x


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

print(ans + l)
0