結果

問題 No.2890 Chiffon
ユーザー tassei903tassei903
提出日時 2024-09-14 00:19:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 963 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 154,420 KB
最終ジャッジ日時 2024-09-14 00:19:34
合計ジャッジ時間 5,811 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,628 KB
testcase_01 AC 40 ms
52,264 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 39 ms
52,744 KB
testcase_04 AC 38 ms
53,244 KB
testcase_05 AC 38 ms
52,612 KB
testcase_06 AC 38 ms
53,412 KB
testcase_07 AC 39 ms
53,184 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 39 ms
53,448 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,312 KB
testcase_13 AC 38 ms
52,688 KB
testcase_14 AC 39 ms
52,248 KB
testcase_15 AC 39 ms
52,736 KB
testcase_16 WA -
testcase_17 AC 39 ms
52,680 KB
testcase_18 AC 39 ms
53,564 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 156 ms
154,420 KB
testcase_23 AC 45 ms
59,716 KB
testcase_24 AC 43 ms
59,224 KB
testcase_25 AC 42 ms
58,612 KB
testcase_26 AC 49 ms
63,320 KB
testcase_27 AC 40 ms
53,808 KB
testcase_28 AC 44 ms
60,016 KB
testcase_29 AC 44 ms
60,148 KB
testcase_30 AC 48 ms
61,680 KB
testcase_31 AC 48 ms
61,852 KB
testcase_32 AC 45 ms
61,100 KB
testcase_33 AC 88 ms
107,320 KB
testcase_34 AC 89 ms
106,276 KB
testcase_35 AC 90 ms
107,040 KB
testcase_36 AC 88 ms
106,980 KB
testcase_37 AC 88 ms
107,276 KB
testcase_38 AC 88 ms
107,276 KB
testcase_39 AC 88 ms
107,976 KB
testcase_40 AC 88 ms
106,884 KB
testcase_41 AC 88 ms
107,296 KB
testcase_42 AC 88 ms
107,260 KB
testcase_43 AC 88 ms
106,764 KB
testcase_44 AC 88 ms
107,064 KB
testcase_45 AC 89 ms
107,164 KB
testcase_46 AC 89 ms
106,544 KB
testcase_47 AC 89 ms
107,324 KB
testcase_48 AC 88 ms
107,328 KB
testcase_49 AC 91 ms
107,508 KB
testcase_50 AC 89 ms
106,756 KB
testcase_51 AC 90 ms
107,980 KB
testcase_52 AC 89 ms
107,296 KB
testcase_53 AC 54 ms
64,508 KB
testcase_54 AC 74 ms
89,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, k = na()

a = na()
f = 10 ** 18
fi = -1
for i in range(k):
    if (a[(i+1) % k] - a[i]) % (2 * n) < f:
        f = (a[(i+1) % k] - a[i]) % (2 * n)
        fi = i

x = a[fi]
a = [(a[i] - x) % (2 * n) // 2 for i in range(k)]
a.sort()
a.append(n)


ok = 1
ng = n + 1

while ng - ok > 1:
    mid = (ok + ng) // 2
    
    FLAG = 0
    for x in range(a[1]):
        y = x
        for i in range(1, k):
            y = max(y + mid, a[i])
            if y >= a[i+1]:
                break
        else:
            FLAG = 1
            break
    if FLAG:
        ok = mid
    else:
        ng = mid

print(ok * 2)
0