結果

問題 No.2890 Chiffon
ユーザー 👑 seekworserseekworser
提出日時 2024-07-05 14:37:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 568 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 81,576 KB
実行使用メモリ 150,784 KB
最終ジャッジ日時 2024-07-06 11:13:15
合計ジャッジ時間 6,842 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,516 KB
testcase_01 AC 34 ms
51,700 KB
testcase_02 AC 35 ms
52,264 KB
testcase_03 AC 32 ms
52,708 KB
testcase_04 AC 33 ms
52,072 KB
testcase_05 AC 31 ms
52,576 KB
testcase_06 AC 32 ms
52,204 KB
testcase_07 AC 33 ms
52,276 KB
testcase_08 AC 33 ms
52,504 KB
testcase_09 AC 35 ms
52,952 KB
testcase_10 AC 32 ms
52,356 KB
testcase_11 AC 35 ms
52,604 KB
testcase_12 AC 35 ms
52,768 KB
testcase_13 AC 35 ms
52,616 KB
testcase_14 AC 33 ms
52,756 KB
testcase_15 AC 34 ms
52,284 KB
testcase_16 AC 35 ms
53,100 KB
testcase_17 AC 33 ms
52,076 KB
testcase_18 AC 32 ms
52,596 KB
testcase_19 AC 32 ms
53,732 KB
testcase_20 AC 31 ms
53,296 KB
testcase_21 AC 33 ms
52,740 KB
testcase_22 AC 127 ms
150,784 KB
testcase_23 AC 84 ms
75,856 KB
testcase_24 AC 57 ms
69,192 KB
testcase_25 AC 144 ms
75,824 KB
testcase_26 AC 56 ms
67,992 KB
testcase_27 AC 43 ms
63,748 KB
testcase_28 AC 35 ms
58,268 KB
testcase_29 AC 60 ms
72,500 KB
testcase_30 AC 56 ms
66,708 KB
testcase_31 AC 88 ms
76,180 KB
testcase_32 AC 39 ms
61,752 KB
testcase_33 AC 74 ms
105,332 KB
testcase_34 AC 81 ms
105,480 KB
testcase_35 AC 76 ms
105,328 KB
testcase_36 AC 76 ms
105,868 KB
testcase_37 AC 77 ms
105,692 KB
testcase_38 AC 77 ms
104,812 KB
testcase_39 AC 78 ms
106,324 KB
testcase_40 AC 80 ms
105,064 KB
testcase_41 AC 77 ms
105,128 KB
testcase_42 AC 76 ms
104,524 KB
testcase_43 TLE -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int, input().split())
a = list(map(int, input().split()))
a.append(a[0] + 2*n)

an = a.copy()

for i in range(k+1):
    an[i] -= a[0]

ans = 0
for s in range(1, an[1], 2):
    ok = 0
    ng = n
    while ng - ok > 1:
        mid = (ok + ng) // 2
        def check():
            x = 2*mid
            si = s
            for i in range(k-1):
                if si + x > an[i+2]: return False
                si = max(si+x, an[i+1]+1)
            return si + x <= s + 2*n
        if check(): ok = mid
        else: ng = mid
    ans = max(ans, ok*2)
print(ans)
0