結果

問題 No.2542 Yokan for Two
ユーザー titiatitia
提出日時 2023-11-25 00:36:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 183,300 KB
最終ジャッジ日時 2024-09-26 09:51:10
合計ジャッジ時間 9,389 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,804 KB
testcase_01 AC 40 ms
52,184 KB
testcase_02 AC 40 ms
52,752 KB
testcase_03 AC 83 ms
88,784 KB
testcase_04 AC 95 ms
83,512 KB
testcase_05 AC 189 ms
130,680 KB
testcase_06 AC 40 ms
53,600 KB
testcase_07 AC 293 ms
148,460 KB
testcase_08 AC 123 ms
100,308 KB
testcase_09 AC 308 ms
158,308 KB
testcase_10 AC 83 ms
78,772 KB
testcase_11 AC 94 ms
79,680 KB
testcase_12 AC 192 ms
149,004 KB
testcase_13 AC 72 ms
76,732 KB
testcase_14 AC 224 ms
139,200 KB
testcase_15 AC 292 ms
178,912 KB
testcase_16 AC 257 ms
152,836 KB
testcase_17 AC 229 ms
147,960 KB
testcase_18 AC 281 ms
168,568 KB
testcase_19 AC 149 ms
107,020 KB
testcase_20 AC 126 ms
98,336 KB
testcase_21 AC 137 ms
101,672 KB
testcase_22 AC 138 ms
105,884 KB
testcase_23 AC 145 ms
104,608 KB
testcase_24 AC 39 ms
51,872 KB
testcase_25 AC 40 ms
52,428 KB
testcase_26 AC 39 ms
53,188 KB
testcase_27 AC 41 ms
52,224 KB
testcase_28 AC 46 ms
61,164 KB
testcase_29 AC 105 ms
109,176 KB
testcase_30 AC 220 ms
142,432 KB
testcase_31 AC 221 ms
143,132 KB
testcase_32 AC 220 ms
140,004 KB
testcase_33 AC 234 ms
141,160 KB
testcase_34 AC 268 ms
154,252 KB
testcase_35 AC 283 ms
164,752 KB
testcase_36 AC 265 ms
155,960 KB
testcase_37 AC 291 ms
168,544 KB
testcase_38 AC 282 ms
164,584 KB
testcase_39 AC 314 ms
183,300 KB
testcase_40 AC 300 ms
178,824 KB
testcase_41 AC 280 ms
165,152 KB
testcase_42 AC 285 ms
168,008 KB
testcase_43 AC 294 ms
168,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

L,N=map(int,input().split())
X=list(map(int,input().split()))

DP={abs(X[0]-(L-X[-1]))}

for i in range(1,N):
    NDP=set()

    for dp in DP:
        NDP.add(abs(dp+X[i]-X[i-1]))
        NDP.add(abs(dp-X[i]+X[i-1]))

    DP=NDP

print(min(DP))
0