結果

問題 No.2542 Yokan for Two
ユーザー 👑 p-adicp-adic
提出日時 2023-08-10 19:15:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 259,336 KB
最終ジャッジ日時 2024-11-17 04:07:25
合計ジャッジ時間 12,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
51,584 KB
testcase_03 AC 168 ms
152,440 KB
testcase_04 AC 164 ms
106,880 KB
testcase_05 AC 432 ms
256,536 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 577 ms
259,336 KB
testcase_08 AC 230 ms
166,400 KB
testcase_09 AC 593 ms
258,332 KB
testcase_10 AC 113 ms
102,400 KB
testcase_11 AC 138 ms
105,600 KB
testcase_12 AC 345 ms
256,732 KB
testcase_13 AC 110 ms
97,920 KB
testcase_14 AC 274 ms
157,260 KB
testcase_15 AC 356 ms
195,868 KB
testcase_16 AC 312 ms
173,064 KB
testcase_17 AC 273 ms
165,648 KB
testcase_18 AC 342 ms
193,192 KB
testcase_19 AC 183 ms
109,184 KB
testcase_20 AC 147 ms
100,480 KB
testcase_21 AC 162 ms
102,784 KB
testcase_22 AC 161 ms
107,008 KB
testcase_23 AC 170 ms
105,984 KB
testcase_24 AC 37 ms
51,712 KB
testcase_25 AC 37 ms
52,608 KB
testcase_26 AC 39 ms
52,352 KB
testcase_27 AC 46 ms
59,520 KB
testcase_28 AC 49 ms
61,696 KB
testcase_29 AC 201 ms
148,352 KB
testcase_30 AC 267 ms
157,120 KB
testcase_31 AC 273 ms
160,016 KB
testcase_32 AC 266 ms
159,528 KB
testcase_33 AC 298 ms
171,384 KB
testcase_34 AC 325 ms
192,940 KB
testcase_35 AC 379 ms
203,336 KB
testcase_36 AC 334 ms
195,352 KB
testcase_37 AC 380 ms
208,392 KB
testcase_38 AC 357 ms
207,928 KB
testcase_39 AC 366 ms
217,804 KB
testcase_40 AC 351 ms
207,388 KB
testcase_41 AC 328 ms
189,380 KB
testcase_42 AC 327 ms
192,704 KB
testcase_43 AC 373 ms
193,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def J():
	return map(int,input().split())
L,N=J()
X=list(J())+[L]
E=set()
F={0}
O={X[0]}
for i in range(1,N+1):
	G=set()
	for x in O:E.add(x),G.add(x-X[i])
	for x in F:O.add(x+X[i])
	F|=G
print(min(abs(x*2-L)for x in E))
0