結果

問題 No.2542 Yokan for Two
ユーザー ntudantuda
提出日時 2023-11-25 12:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 2,000 ms
コード長 364 bytes
コンパイル時間 896 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 259,640 KB
最終ジャッジ日時 2024-09-26 10:18:35
合計ジャッジ時間 18,353 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,456 KB
testcase_01 AC 42 ms
51,828 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 179 ms
144,640 KB
testcase_04 AC 203 ms
119,708 KB
testcase_05 AC 598 ms
258,192 KB
testcase_06 AC 44 ms
51,712 KB
testcase_07 AC 960 ms
258,628 KB
testcase_08 AC 360 ms
252,636 KB
testcase_09 AC 917 ms
259,640 KB
testcase_10 AC 137 ms
102,272 KB
testcase_11 AC 187 ms
109,344 KB
testcase_12 AC 569 ms
254,388 KB
testcase_13 AC 134 ms
98,776 KB
testcase_14 AC 424 ms
174,932 KB
testcase_15 AC 538 ms
196,800 KB
testcase_16 AC 488 ms
189,508 KB
testcase_17 AC 437 ms
178,304 KB
testcase_18 AC 538 ms
211,716 KB
testcase_19 AC 268 ms
122,676 KB
testcase_20 AC 221 ms
111,104 KB
testcase_21 AC 243 ms
113,892 KB
testcase_22 AC 244 ms
116,480 KB
testcase_23 AC 261 ms
116,804 KB
testcase_24 AC 44 ms
51,968 KB
testcase_25 AC 47 ms
51,968 KB
testcase_26 AC 45 ms
52,096 KB
testcase_27 AC 50 ms
58,624 KB
testcase_28 AC 53 ms
60,160 KB
testcase_29 AC 301 ms
228,420 KB
testcase_30 AC 407 ms
162,388 KB
testcase_31 AC 416 ms
165,780 KB
testcase_32 AC 408 ms
162,676 KB
testcase_33 AC 450 ms
181,892 KB
testcase_34 AC 527 ms
212,112 KB
testcase_35 AC 548 ms
207,436 KB
testcase_36 AC 510 ms
185,156 KB
testcase_37 AC 563 ms
225,712 KB
testcase_38 AC 543 ms
221,080 KB
testcase_39 AC 594 ms
230,180 KB
testcase_40 AC 570 ms
219,516 KB
testcase_41 AC 545 ms
218,096 KB
testcase_42 AC 539 ms
198,500 KB
testcase_43 AC 566 ms
225,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, N = map(int, input().split())
X = list(map(int, input().split())) + [L]
Q = [{X[0]}, set()]

now = X[0]
for x in X[1:]:
    dif = x - now
    Q2 = [set(), set()]
    for j in range(2):
        for q in Q[j]:
            Q2[0].add(q + dif)
            Q2[1].add(q - dif)
    now = x
    Q = Q2
ans = 10 ** 10
for q in Q[1]:
    ans = min(ans, abs(q))
print(ans)
0