結果

問題 No.2890 Chiffon
ユーザー ntudantuda
提出日時 2024-09-14 11:13:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 790 bytes
コンパイル時間 472 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 178,296 KB
最終ジャッジ日時 2024-09-14 11:13:53
合計ジャッジ時間 6,079 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 41 ms
52,364 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 40 ms
52,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 41 ms
52,096 KB
testcase_11 AC 40 ms
51,840 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 40 ms
52,020 KB
testcase_15 AC 39 ms
51,712 KB
testcase_16 WA -
testcase_17 AC 40 ms
51,968 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 40 ms
52,352 KB
testcase_21 AC 40 ms
52,096 KB
testcase_22 AC 168 ms
178,296 KB
testcase_23 AC 45 ms
59,220 KB
testcase_24 AC 43 ms
58,884 KB
testcase_25 AC 43 ms
58,540 KB
testcase_26 AC 48 ms
61,096 KB
testcase_27 AC 39 ms
52,208 KB
testcase_28 AC 44 ms
59,196 KB
testcase_29 AC 45 ms
58,592 KB
testcase_30 AC 55 ms
63,104 KB
testcase_31 AC 48 ms
61,632 KB
testcase_32 AC 45 ms
60,308 KB
testcase_33 AC 97 ms
115,744 KB
testcase_34 AC 97 ms
115,764 KB
testcase_35 AC 97 ms
115,612 KB
testcase_36 AC 98 ms
115,696 KB
testcase_37 AC 96 ms
116,104 KB
testcase_38 AC 95 ms
115,532 KB
testcase_39 AC 96 ms
115,680 KB
testcase_40 AC 96 ms
115,704 KB
testcase_41 AC 98 ms
115,396 KB
testcase_42 AC 99 ms
116,068 KB
testcase_43 AC 97 ms
116,084 KB
testcase_44 AC 98 ms
115,692 KB
testcase_45 AC 98 ms
115,660 KB
testcase_46 AC 98 ms
116,120 KB
testcase_47 AC 99 ms
115,952 KB
testcase_48 AC 97 ms
115,628 KB
testcase_49 AC 98 ms
115,816 KB
testcase_50 AC 98 ms
115,664 KB
testcase_51 AC 98 ms
115,720 KB
testcase_52 AC 97 ms
115,600 KB
testcase_53 AC 51 ms
62,568 KB
testcase_54 AC 79 ms
95,352 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 + 1) // K + 1
while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(2 * mid):
        lb = mid
    else:
        ub = mid
print(2 * lb)
0