結果

問題 No.2890 Chiffon
ユーザー ntudantuda
提出日時 2024-09-14 11:00:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 782 bytes
コンパイル時間 600 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 178,428 KB
最終ジャッジ日時 2024-09-14 11:00:48
合計ジャッジ時間 6,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 40 ms
51,712 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 40 ms
51,840 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 40 ms
52,224 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 192 ms
178,428 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 45 ms
57,984 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 47 ms
59,904 KB
testcase_33 AC 103 ms
115,712 KB
testcase_34 AC 103 ms
116,224 KB
testcase_35 AC 104 ms
116,096 KB
testcase_36 AC 104 ms
115,584 KB
testcase_37 AC 104 ms
116,224 KB
testcase_38 AC 104 ms
116,224 KB
testcase_39 AC 104 ms
116,224 KB
testcase_40 AC 104 ms
115,840 KB
testcase_41 AC 106 ms
115,584 KB
testcase_42 AC 104 ms
116,224 KB
testcase_43 AC 104 ms
116,352 KB
testcase_44 AC 104 ms
115,712 KB
testcase_45 AC 104 ms
115,712 KB
testcase_46 AC 104 ms
115,712 KB
testcase_47 AC 106 ms
115,584 KB
testcase_48 AC 105 ms
115,968 KB
testcase_49 AC 105 ms
115,584 KB
testcase_50 AC 105 ms
115,968 KB
testcase_51 AC 105 ms
115,712 KB
testcase_52 AC 104 ms
115,840 KB
testcase_53 RE -
testcase_54 AC 85 ms
95,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A2 = A[:]
N2 = N * 2
N4 = N2 * 2
A2 += [i + N2 for i in A]
A2 += [i + N4 for i in A]
damin = N * 2
for i in range(K):
    if damin > A2[i + 1] - A2[i]:
        damin = A2[i + 1] - A2[i]
        damini = i
start = A2[damini] + 1
end = A2[damini + 1]

def check(x):
    for i in range(start, end, 2):
        now = i
        f = True
        for j in range(damin + 1, damin + K + 1):
            if now + x >= A2[j + 1]:
                f = False
                break
            now = max(now + x, A2[j] + 1)
        if f:
            return True
    return False

lb = 1
ub = N // K + 1
while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(2 * mid):
        lb = mid
    else:
        ub = mid
print(2 * lb)
0