結果

問題 No.2542 Yokan for Two
ユーザー 👑 p-adicp-adic
提出日時 2023-08-10 19:16:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 220 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 46,188 KB
最終ジャッジ日時 2024-11-17 04:08:04
合計ジャッジ時間 35,246 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 369 ms
46,188 KB
testcase_04 AC 494 ms
22,280 KB
testcase_05 AC 1,158 ms
45,296 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 TLE -
testcase_08 AC 493 ms
28,508 KB
testcase_09 TLE -
testcase_10 AC 230 ms
22,208 KB
testcase_11 AC 363 ms
22,284 KB
testcase_12 AC 960 ms
45,228 KB
testcase_13 AC 204 ms
14,844 KB
testcase_14 AC 967 ms
27,240 KB
testcase_15 AC 1,283 ms
27,184 KB
testcase_16 AC 1,110 ms
27,156 KB
testcase_17 AC 969 ms
23,064 KB
testcase_18 AC 1,159 ms
27,144 KB
testcase_19 AC 576 ms
22,400 KB
testcase_20 AC 458 ms
15,080 KB
testcase_21 AC 545 ms
14,960 KB
testcase_22 AC 560 ms
22,300 KB
testcase_23 AC 575 ms
22,160 KB
testcase_24 AC 27 ms
10,752 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 29 ms
11,136 KB
testcase_28 AC 30 ms
11,264 KB
testcase_29 AC 410 ms
45,792 KB
testcase_30 AC 953 ms
24,200 KB
testcase_31 AC 958 ms
23,964 KB
testcase_32 AC 890 ms
23,940 KB
testcase_33 AC 997 ms
30,624 KB
testcase_34 AC 1,186 ms
30,864 KB
testcase_35 AC 1,227 ms
30,964 KB
testcase_36 AC 1,160 ms
30,816 KB
testcase_37 AC 1,298 ms
31,212 KB
testcase_38 AC 1,159 ms
31,076 KB
testcase_39 AC 1,361 ms
27,328 KB
testcase_40 AC 1,194 ms
27,200 KB
testcase_41 AC 1,151 ms
27,096 KB
testcase_42 AC 1,161 ms
27,216 KB
testcase_43 AC 1,208 ms
27,120 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