結果

問題 No.2890 Chiffon
ユーザー ntudantuda
提出日時 2024-09-14 10:52:01
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 805 bytes
コンパイル時間 526 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 178,296 KB
最終ジャッジ日時 2024-09-14 10:52:09
合計ジャッジ時間 7,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 37 ms
52,224 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 AC 38 ms
51,968 KB
testcase_18 WA -
testcase_19 AC 38 ms
52,096 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 164 ms
178,296 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 42 ms
57,984 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 43 ms
59,520 KB
testcase_33 AC 90 ms
115,584 KB
testcase_34 AC 91 ms
115,456 KB
testcase_35 AC 92 ms
115,712 KB
testcase_36 AC 92 ms
115,968 KB
testcase_37 AC 91 ms
116,096 KB
testcase_38 AC 91 ms
115,968 KB
testcase_39 AC 93 ms
115,712 KB
testcase_40 AC 91 ms
115,584 KB
testcase_41 AC 92 ms
115,712 KB
testcase_42 AC 91 ms
116,352 KB
testcase_43 AC 108 ms
115,584 KB
testcase_44 AC 93 ms
116,352 KB
testcase_45 AC 95 ms
116,352 KB
testcase_46 AC 92 ms
115,968 KB
testcase_47 AC 91 ms
115,840 KB
testcase_48 AC 92 ms
116,064 KB
testcase_49 AC 91 ms
115,712 KB
testcase_50 AC 91 ms
115,456 KB
testcase_51 AC 92 ms
115,584 KB
testcase_52 AC 91 ms
115,712 KB
testcase_53 RE -
testcase_54 AC 74 ms
95,744 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]
if end < start:
    end += N2

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 = 2
ub = N2 // K + 1
while ub - lb > 1:
    mid = (ub + lb) // 2
    if check(mid):
        lb = mid
    else:
        ub = mid
print(lb)
0