結果

問題 No.2542 Yokan for Two
ユーザー 👑 p-adicp-adic
提出日時 2023-08-10 19:39:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 213 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 261,160 KB
最終ジャッジ日時 2024-11-17 04:42:26
合計ジャッジ時間 41,325 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 175 ms
133,668 KB
testcase_04 AC 504 ms
127,360 KB
testcase_05 AC 953 ms
257,444 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 TLE -
testcase_08 AC 283 ms
163,232 KB
testcase_09 TLE -
testcase_10 AC 164 ms
105,328 KB
testcase_11 AC 316 ms
116,216 KB
testcase_12 AC 685 ms
256,068 KB
testcase_13 AC 160 ms
102,100 KB
testcase_14 AC 1,166 ms
187,756 KB
testcase_15 AC 1,643 ms
208,808 KB
testcase_16 AC 1,465 ms
195,548 KB
testcase_17 AC 1,262 ms
180,920 KB
testcase_18 AC 1,476 ms
215,980 KB
testcase_19 AC 789 ms
139,996 KB
testcase_20 AC 600 ms
115,456 KB
testcase_21 AC 695 ms
122,240 KB
testcase_22 AC 651 ms
120,140 KB
testcase_23 AC 783 ms
133,760 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 39 ms
52,480 KB
testcase_26 AC 39 ms
52,096 KB
testcase_27 AC 42 ms
57,984 KB
testcase_28 AC 47 ms
60,800 KB
testcase_29 AC 213 ms
164,564 KB
testcase_30 AC 1,172 ms
187,876 KB
testcase_31 AC 1,219 ms
186,252 KB
testcase_32 AC 1,198 ms
181,736 KB
testcase_33 AC 1,307 ms
189,448 KB
testcase_34 AC 1,476 ms
209,296 KB
testcase_35 AC 1,602 ms
207,576 KB
testcase_36 AC 1,497 ms
202,152 KB
testcase_37 AC 1,575 ms
233,504 KB
testcase_38 AC 1,436 ms
245,808 KB
testcase_39 AC 1,652 ms
254,604 KB
testcase_40 AC 1,575 ms
241,424 KB
testcase_41 AC 1,501 ms
226,040 KB
testcase_42 AC 1,532 ms
213,200 KB
testcase_43 AC 1,559 ms
233,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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