結果

問題 No.2542 Yokan for Two
ユーザー timitimi
提出日時 2023-12-01 15:09:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 435 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,772 KB
実行使用メモリ 219,392 KB
最終ジャッジ日時 2024-09-26 15:38:56
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,312 KB
testcase_01 AC 47 ms
62,976 KB
testcase_02 AC 40 ms
59,264 KB
testcase_03 AC 100 ms
108,288 KB
testcase_04 AC 184 ms
186,112 KB
testcase_05 AC 158 ms
149,760 KB
testcase_06 AC 45 ms
62,848 KB
testcase_07 AC 230 ms
209,920 KB
testcase_08 AC 103 ms
107,776 KB
testcase_09 AC 230 ms
206,720 KB
testcase_10 AC 119 ms
129,792 KB
testcase_11 AC 148 ms
153,344 KB
testcase_12 AC 139 ms
129,792 KB
testcase_13 AC 124 ms
131,328 KB
testcase_14 AC 220 ms
218,752 KB
testcase_15 AC 231 ms
219,008 KB
testcase_16 AC 226 ms
219,136 KB
testcase_17 AC 223 ms
219,008 KB
testcase_18 AC 228 ms
219,008 KB
testcase_19 AC 218 ms
218,624 KB
testcase_20 AC 216 ms
219,008 KB
testcase_21 AC 214 ms
219,392 KB
testcase_22 AC 215 ms
218,624 KB
testcase_23 AC 217 ms
219,008 KB
testcase_24 AC 51 ms
68,992 KB
testcase_25 AC 62 ms
75,776 KB
testcase_26 AC 63 ms
77,440 KB
testcase_27 AC 64 ms
78,464 KB
testcase_28 AC 65 ms
79,616 KB
testcase_29 AC 93 ms
101,472 KB
testcase_30 AC 220 ms
217,216 KB
testcase_31 AC 225 ms
217,368 KB
testcase_32 AC 219 ms
217,216 KB
testcase_33 AC 218 ms
217,216 KB
testcase_34 AC 221 ms
217,088 KB
testcase_35 AC 223 ms
217,472 KB
testcase_36 AC 222 ms
217,472 KB
testcase_37 AC 228 ms
217,344 KB
testcase_38 AC 232 ms
217,472 KB
testcase_39 AC 231 ms
217,472 KB
testcase_40 AC 264 ms
217,856 KB
testcase_41 AC 226 ms
217,088 KB
testcase_42 AC 224 ms
217,216 KB
testcase_43 AC 228 ms
217,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,N=map(int, input().split())
X=list(map(int, input().split()))
A=[]
for i in range(N-1):
  A.append(X[i+1]-X[i])

dp=[0]*(2*10**5+10)
dp[0]=1
for a in A:
  ndp=[0]*(2*10**5+10)
  mod=2*10**5+10
  for i in range(2*10**5+10):
    if dp[i]==1:
      #print(a,i+a,i-a)
      ndp[(i+a)%mod]=1
      ndp[i-a]=1
  dp=ndp
  
ans=10**10
for i in range(-10**5-4,10**5+4):
  if dp[i]==1:
    d=i+X[0]-(L-X[-1])
    ans=min(ans,abs(d))
print(ans)
0