結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,936 KB
testcase_01 AC 36 ms
52,940 KB
testcase_02 AC 36 ms
53,644 KB
testcase_03 AC 41 ms
52,528 KB
testcase_04 AC 41 ms
52,496 KB
testcase_05 AC 40 ms
53,708 KB
testcase_06 AC 36 ms
52,616 KB
testcase_07 AC 37 ms
52,956 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 37 ms
52,712 KB
testcase_11 WA -
testcase_12 AC 37 ms
53,216 KB
testcase_13 AC 36 ms
54,008 KB
testcase_14 AC 36 ms
52,536 KB
testcase_15 AC 40 ms
52,468 KB
testcase_16 WA -
testcase_17 AC 38 ms
52,204 KB
testcase_18 AC 36 ms
52,660 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 143 ms
154,688 KB
testcase_23 AC 43 ms
60,616 KB
testcase_24 AC 40 ms
58,680 KB
testcase_25 AC 42 ms
59,596 KB
testcase_26 AC 48 ms
62,248 KB
testcase_27 AC 36 ms
52,868 KB
testcase_28 AC 42 ms
59,348 KB
testcase_29 AC 41 ms
59,092 KB
testcase_30 AC 46 ms
61,804 KB
testcase_31 AC 47 ms
62,132 KB
testcase_32 AC 42 ms
61,580 KB
testcase_33 AC 85 ms
107,176 KB
testcase_34 AC 85 ms
107,400 KB
testcase_35 AC 85 ms
108,216 KB
testcase_36 AC 85 ms
107,060 KB
testcase_37 AC 84 ms
106,932 KB
testcase_38 AC 93 ms
108,020 KB
testcase_39 AC 84 ms
106,588 KB
testcase_40 AC 91 ms
107,180 KB
testcase_41 AC 84 ms
107,272 KB
testcase_42 AC 84 ms
106,984 KB
testcase_43 AC 85 ms
106,808 KB
testcase_44 AC 84 ms
108,304 KB
testcase_45 AC 85 ms
106,680 KB
testcase_46 AC 84 ms
106,972 KB
testcase_47 AC 85 ms
107,320 KB
testcase_48 AC 84 ms
106,812 KB
testcase_49 AC 85 ms
107,408 KB
testcase_50 AC 84 ms
108,164 KB
testcase_51 AC 84 ms
106,520 KB
testcase_52 AC 91 ms
106,476 KB
testcase_53 AC 52 ms
63,980 KB
testcase_54 AC 69 ms
91,268 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
        a[k] = x + n
        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