結果

問題 No.2542 Yokan for Two
ユーザー なえしらなえしら
提出日時 2024-06-15 01:29:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 494 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 247,608 KB
最終ジャッジ日時 2024-06-15 01:30:04
合計ジャッジ時間 15,936 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,836 KB
testcase_01 AC 36 ms
52,212 KB
testcase_02 AC 43 ms
52,748 KB
testcase_03 AC 187 ms
145,768 KB
testcase_04 AC 142 ms
115,116 KB
testcase_05 AC 285 ms
187,816 KB
testcase_06 AC 48 ms
62,268 KB
testcase_07 AC 494 ms
247,608 KB
testcase_08 AC 190 ms
130,204 KB
testcase_09 AC 441 ms
246,064 KB
testcase_10 AC 99 ms
95,716 KB
testcase_11 AC 138 ms
99,948 KB
testcase_12 AC 221 ms
158,764 KB
testcase_13 AC 89 ms
89,260 KB
testcase_14 AC 457 ms
245,544 KB
testcase_15 AC 465 ms
245,548 KB
testcase_16 AC 464 ms
245,864 KB
testcase_17 AC 424 ms
245,672 KB
testcase_18 AC 460 ms
245,684 KB
testcase_19 AC 275 ms
200,000 KB
testcase_20 AC 276 ms
186,880 KB
testcase_21 AC 247 ms
187,680 KB
testcase_22 AC 251 ms
192,284 KB
testcase_23 AC 250 ms
192,800 KB
testcase_24 AC 66 ms
74,716 KB
testcase_25 AC 83 ms
85,768 KB
testcase_26 AC 99 ms
86,036 KB
testcase_27 AC 87 ms
88,752 KB
testcase_28 AC 93 ms
92,448 KB
testcase_29 AC 175 ms
134,056 KB
testcase_30 AC 469 ms
247,092 KB
testcase_31 AC 493 ms
246,472 KB
testcase_32 AC 463 ms
246,336 KB
testcase_33 AC 465 ms
246,908 KB
testcase_34 AC 488 ms
246,644 KB
testcase_35 AC 467 ms
247,360 KB
testcase_36 AC 456 ms
246,764 KB
testcase_37 AC 493 ms
246,916 KB
testcase_38 AC 469 ms
247,084 KB
testcase_39 AC 482 ms
245,608 KB
testcase_40 AC 454 ms
246,636 KB
testcase_41 AC 459 ms
244,936 KB
testcase_42 AC 490 ms
245,616 KB
testcase_43 AC 459 ms
245,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L, N = map(int, input().split())
X = list(map(int, input().split()))

dp = [False]*L*2
dp[X[0]] = True

for i in range(N-1):
  l = X[i+1] - X[i]
  ndp = [False]*L*2
  for d in range(1-L, L):
    if dp[d]: ndp[d-l] = ndp[d+l] = True
  dp = ndp

l = L - X[-1]
m = min(abs(d-l) for d in range(1-L, L) if dp[d])

print(m)
0