結果

問題 No.2542 Yokan for Two
ユーザー sasa8uyauyasasa8uyauya
提出日時 2023-11-24 21:57:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 417 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 252,628 KB
最終ジャッジ日時 2024-09-26 09:15:01
合計ジャッジ時間 14,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,240 KB
testcase_01 AC 38 ms
52,680 KB
testcase_02 AC 36 ms
52,488 KB
testcase_03 AC 193 ms
167,840 KB
testcase_04 AC 155 ms
129,700 KB
testcase_05 AC 288 ms
223,792 KB
testcase_06 AC 50 ms
67,732 KB
testcase_07 AC 471 ms
252,628 KB
testcase_08 AC 172 ms
147,344 KB
testcase_09 AC 469 ms
251,544 KB
testcase_10 AC 111 ms
103,632 KB
testcase_11 AC 127 ms
111,672 KB
testcase_12 AC 242 ms
185,412 KB
testcase_13 AC 105 ms
97,960 KB
testcase_14 AC 428 ms
246,772 KB
testcase_15 AC 453 ms
247,260 KB
testcase_16 AC 457 ms
247,372 KB
testcase_17 AC 420 ms
248,820 KB
testcase_18 AC 458 ms
247,024 KB
testcase_19 AC 260 ms
234,664 KB
testcase_20 AC 248 ms
220,080 KB
testcase_21 AC 246 ms
222,108 KB
testcase_22 AC 250 ms
226,140 KB
testcase_23 AC 255 ms
226,728 KB
testcase_24 AC 71 ms
83,248 KB
testcase_25 AC 92 ms
97,972 KB
testcase_26 AC 95 ms
100,856 KB
testcase_27 AC 96 ms
102,736 KB
testcase_28 AC 102 ms
107,060 KB
testcase_29 AC 177 ms
153,420 KB
testcase_30 AC 471 ms
250,028 KB
testcase_31 AC 472 ms
251,592 KB
testcase_32 AC 464 ms
250,052 KB
testcase_33 AC 469 ms
251,708 KB
testcase_34 AC 479 ms
251,048 KB
testcase_35 AC 475 ms
251,544 KB
testcase_36 AC 477 ms
251,140 KB
testcase_37 AC 480 ms
251,324 KB
testcase_38 AC 483 ms
252,456 KB
testcase_39 AC 471 ms
246,200 KB
testcase_40 AC 468 ms
246,768 KB
testcase_41 AC 438 ms
248,100 KB
testcase_42 AC 461 ms
247,180 KB
testcase_43 AC 459 ms
246,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,n=map(int,input().split())
x=[0]+list(map(int,input().split()))+[l]
for i in reversed(range(1,n+2)):
  x[i]-=x[i-1]
q=[[0]*(2*l+1),[0]*(2*l+1)]
q[0][x[1]]=1
for v in x[2:]:
  nq=[[0]*(2*l+1),[0]*(2*l+1)]
  for j in range(-l,l+1):
    if q[0][j]:
      nq[0][j+v]=1
      nq[1][j-v]=1
    if q[1][j]:
      nq[0][j+v]=1
      nq[1][j-v]=1
  q=nq
g=l
for i in range(-l,l+1):
  if q[1][i]:
    g=min(g,abs(i))
print(g)
0