結果

問題 No.2890 Chiffon
ユーザー tassei903tassei903
提出日時 2024-09-14 00:26:24
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,045 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 154,476 KB
最終ジャッジ日時 2024-09-26 14:42:03
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 47 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
52,736 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 39 ms
52,372 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 36 ms
52,224 KB
testcase_13 AC 37 ms
52,096 KB
testcase_14 AC 36 ms
52,352 KB
testcase_15 AC 35 ms
52,608 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 38 ms
51,840 KB
testcase_18 AC 38 ms
51,968 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 37 ms
51,840 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 154 ms
154,476 KB
testcase_24 AC 44 ms
59,520 KB
testcase_25 AC 42 ms
58,496 KB
testcase_26 AC 41 ms
58,880 KB
testcase_27 AC 47 ms
62,080 KB
testcase_28 AC 37 ms
52,352 KB
testcase_29 AC 42 ms
59,264 KB
testcase_30 AC 43 ms
60,032 KB
testcase_31 AC 48 ms
61,568 KB
testcase_32 AC 48 ms
61,824 KB
testcase_33 AC 43 ms
59,904 KB
testcase_34 AC 86 ms
107,264 KB
testcase_35 AC 87 ms
106,752 KB
testcase_36 AC 87 ms
106,624 KB
testcase_37 AC 100 ms
106,368 KB
testcase_38 AC 88 ms
107,008 KB
testcase_39 AC 88 ms
106,624 KB
testcase_40 AC 88 ms
107,008 KB
testcase_41 AC 86 ms
106,496 KB
testcase_42 AC 86 ms
106,648 KB
testcase_43 AC 86 ms
106,624 KB
testcase_44 AC 86 ms
106,624 KB
testcase_45 AC 87 ms
106,624 KB
testcase_46 AC 89 ms
106,880 KB
testcase_47 AC 87 ms
106,624 KB
testcase_48 AC 89 ms
107,264 KB
testcase_49 AC 88 ms
106,496 KB
testcase_50 AC 87 ms
107,008 KB
testcase_51 AC 88 ms
106,624 KB
testcase_52 AC 87 ms
106,752 KB
testcase_53 AC 113 ms
106,832 KB
testcase_54 AC 52 ms
63,872 KB
testcase_55 AC 70 ms
89,600 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
#print(a)
while ng - ok > 1:
    mid = (ok + ng) // 2
    
    FLAG = 0
    for x in range(a[1]):
        y = x
        for i in range(1, k+1):
            y = max(y + mid, a[i])
            if i < k and y >= a[i+1]:
                break
        else:
            #print(mid, x, y)
            if y <= x + n:
                FLAG = 1
            break
    if FLAG:
        ok = mid
    else:
        ng = mid

print(ok * 2)
0