結果

問題 No.2542 Yokan for Two
ユーザー miya145592miya145592
提出日時 2023-11-25 02:04:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 496 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 497 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 257,312 KB
最終ジャッジ日時 2024-09-26 10:09:15
合計ジャッジ時間 9,764 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 120 ms
107,708 KB
testcase_04 AC 134 ms
106,240 KB
testcase_05 AC 322 ms
212,744 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 496 ms
256,808 KB
testcase_08 AC 163 ms
144,540 KB
testcase_09 AC 449 ms
257,312 KB
testcase_10 AC 92 ms
94,336 KB
testcase_11 AC 110 ms
97,536 KB
testcase_12 AC 289 ms
255,532 KB
testcase_13 AC 91 ms
91,520 KB
testcase_14 AC 199 ms
139,972 KB
testcase_15 AC 262 ms
173,472 KB
testcase_16 AC 234 ms
152,840 KB
testcase_17 AC 210 ms
148,076 KB
testcase_18 AC 250 ms
168,920 KB
testcase_19 AC 143 ms
107,648 KB
testcase_20 AC 117 ms
99,328 KB
testcase_21 AC 130 ms
101,376 KB
testcase_22 AC 134 ms
106,112 KB
testcase_23 AC 137 ms
105,216 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 39 ms
51,968 KB
testcase_26 AC 40 ms
52,096 KB
testcase_27 AC 44 ms
52,352 KB
testcase_28 AC 49 ms
59,776 KB
testcase_29 AC 162 ms
163,328 KB
testcase_30 AC 208 ms
142,356 KB
testcase_31 AC 210 ms
143,796 KB
testcase_32 AC 203 ms
140,672 KB
testcase_33 AC 221 ms
141,404 KB
testcase_34 AC 243 ms
154,544 KB
testcase_35 AC 257 ms
164,924 KB
testcase_36 AC 241 ms
155,828 KB
testcase_37 AC 263 ms
168,340 KB
testcase_38 AC 258 ms
164,220 KB
testcase_39 AC 286 ms
184,892 KB
testcase_40 AC 270 ms
174,828 KB
testcase_41 AC 258 ms
165,228 KB
testcase_42 AC 256 ms
162,344 KB
testcase_43 AC 266 ms
168,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
L, N = map(int, input().split())
X = list(map(int, input().split()))
A = []
bk = 0
for i in range(N):
    A.append(X[i]-bk)
    bk = X[i]
A.append(L-bk)
dp = set()
dp.add(0)
for i in range(1, len(A)-1):
    ndp = set()
    for d in dp:
        ndp.add(d)
        ndp.add(d+A[i])
    dp = ndp
a = A[0]
b = A[-1]
ans = L
for d in dp:
    ans = min(ans, abs((a+d) - (b+L-(a+b)-d)))
print(ans)
0