結果

問題 No.2890 Chiffon
ユーザー ntudantuda
提出日時 2024-09-14 11:16:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 775 bytes
コンパイル時間 539 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 178,312 KB
最終ジャッジ日時 2024-09-14 11:16:26
合計ジャッジ時間 6,362 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,584 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
51,840 KB
testcase_07 AC 40 ms
52,096 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 41 ms
52,224 KB
testcase_12 AC 40 ms
52,096 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 41 ms
51,584 KB
testcase_15 AC 41 ms
52,096 KB
testcase_16 WA -
testcase_17 AC 41 ms
51,840 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 40 ms
52,096 KB
testcase_21 AC 41 ms
51,712 KB
testcase_22 AC 194 ms
178,312 KB
testcase_23 AC 49 ms
58,752 KB
testcase_24 AC 46 ms
58,112 KB
testcase_25 AC 47 ms
57,728 KB
testcase_26 AC 52 ms
61,312 KB
testcase_27 AC 42 ms
52,096 KB
testcase_28 AC 48 ms
58,496 KB
testcase_29 AC 47 ms
58,368 KB
testcase_30 AC 52 ms
60,928 KB
testcase_31 AC 53 ms
61,184 KB
testcase_32 AC 49 ms
59,776 KB
testcase_33 AC 108 ms
115,456 KB
testcase_34 AC 106 ms
115,968 KB
testcase_35 AC 103 ms
115,328 KB
testcase_36 AC 103 ms
115,584 KB
testcase_37 AC 104 ms
115,584 KB
testcase_38 AC 103 ms
115,328 KB
testcase_39 AC 105 ms
116,096 KB
testcase_40 AC 108 ms
116,096 KB
testcase_41 AC 109 ms
115,712 KB
testcase_42 AC 107 ms
115,584 KB
testcase_43 AC 105 ms
115,712 KB
testcase_44 AC 105 ms
115,712 KB
testcase_45 AC 104 ms
115,840 KB
testcase_46 AC 105 ms
115,584 KB
testcase_47 AC 105 ms
115,840 KB
testcase_48 AC 105 ms
115,840 KB
testcase_49 AC 106 ms
115,328 KB
testcase_50 AC 105 ms
115,712 KB
testcase_51 AC 109 ms
115,584 KB
testcase_52 AC 104 ms
115,328 KB
testcase_53 AC 57 ms
62,464 KB
testcase_54 AC 84 ms
95,360 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(damini + 1, damini + 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
while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(2 * mid):
        lb = mid
    else:
        ub = mid
print(2 * lb)
0