結果

問題 No.2890 Chiffon
ユーザー tassei903tassei903
提出日時 2024-09-14 00:22:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 994 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 154,280 KB
最終ジャッジ日時 2024-09-14 00:22:16
合計ジャッジ時間 5,274 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,952 KB
testcase_01 AC 38 ms
52,196 KB
testcase_02 AC 37 ms
52,880 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 39 ms
52,968 KB
testcase_05 AC 37 ms
52,372 KB
testcase_06 AC 38 ms
53,840 KB
testcase_07 AC 38 ms
52,348 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,972 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,680 KB
testcase_13 AC 37 ms
52,748 KB
testcase_14 AC 37 ms
53,096 KB
testcase_15 AC 36 ms
52,532 KB
testcase_16 WA -
testcase_17 AC 37 ms
52,304 KB
testcase_18 AC 37 ms
52,816 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 152 ms
154,280 KB
testcase_23 AC 42 ms
61,436 KB
testcase_24 AC 41 ms
59,688 KB
testcase_25 AC 41 ms
58,096 KB
testcase_26 AC 47 ms
62,228 KB
testcase_27 AC 36 ms
53,320 KB
testcase_28 AC 43 ms
59,740 KB
testcase_29 AC 41 ms
59,104 KB
testcase_30 AC 45 ms
62,308 KB
testcase_31 AC 54 ms
62,676 KB
testcase_32 AC 43 ms
60,412 KB
testcase_33 AC 83 ms
107,064 KB
testcase_34 AC 84 ms
107,528 KB
testcase_35 AC 85 ms
106,972 KB
testcase_36 AC 83 ms
108,576 KB
testcase_37 AC 87 ms
106,664 KB
testcase_38 AC 86 ms
106,804 KB
testcase_39 AC 85 ms
107,444 KB
testcase_40 AC 85 ms
106,812 KB
testcase_41 AC 86 ms
106,840 KB
testcase_42 AC 85 ms
106,836 KB
testcase_43 AC 92 ms
107,240 KB
testcase_44 AC 86 ms
107,324 KB
testcase_45 AC 86 ms
106,880 KB
testcase_46 AC 86 ms
107,140 KB
testcase_47 AC 86 ms
106,904 KB
testcase_48 AC 87 ms
106,936 KB
testcase_49 AC 86 ms
107,696 KB
testcase_50 AC 86 ms
106,452 KB
testcase_51 AC 86 ms
108,348 KB
testcase_52 AC 86 ms
107,336 KB
testcase_53 AC 51 ms
63,688 KB
testcase_54 AC 71 ms
89,884 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:
            if y <= x + n:
                FLAG = 1
            break
    if FLAG:
        ok = mid
    else:
        ng = mid

print(ok * 2)
0