結果

問題 No.2542 Yokan for Two
ユーザー PNJPNJ
提出日時 2023-11-24 23:26:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 449 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-09-26 09:48:35
合計ジャッジ時間 4,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 58 ms
62,336 KB
testcase_04 AC 54 ms
61,952 KB
testcase_05 AC 68 ms
62,464 KB
testcase_06 AC 46 ms
59,136 KB
testcase_07 AC 86 ms
62,592 KB
testcase_08 AC 55 ms
61,952 KB
testcase_09 AC 83 ms
62,976 KB
testcase_10 AC 51 ms
62,336 KB
testcase_11 AC 52 ms
62,208 KB
testcase_12 AC 65 ms
62,336 KB
testcase_13 AC 50 ms
62,080 KB
testcase_14 AC 79 ms
61,952 KB
testcase_15 AC 83 ms
61,824 KB
testcase_16 AC 81 ms
61,824 KB
testcase_17 AC 80 ms
61,952 KB
testcase_18 AC 82 ms
62,336 KB
testcase_19 AC 65 ms
61,824 KB
testcase_20 AC 61 ms
61,696 KB
testcase_21 AC 66 ms
61,312 KB
testcase_22 AC 66 ms
61,824 KB
testcase_23 AC 67 ms
61,568 KB
testcase_24 AC 45 ms
59,904 KB
testcase_25 AC 48 ms
61,824 KB
testcase_26 AC 46 ms
61,440 KB
testcase_27 AC 48 ms
61,696 KB
testcase_28 AC 47 ms
61,568 KB
testcase_29 AC 57 ms
63,104 KB
testcase_30 AC 80 ms
61,824 KB
testcase_31 AC 86 ms
62,208 KB
testcase_32 AC 82 ms
62,080 KB
testcase_33 AC 84 ms
62,080 KB
testcase_34 AC 85 ms
61,972 KB
testcase_35 AC 88 ms
61,824 KB
testcase_36 AC 84 ms
62,080 KB
testcase_37 AC 88 ms
61,824 KB
testcase_38 AC 87 ms
62,720 KB
testcase_39 AC 87 ms
62,720 KB
testcase_40 AC 84 ms
62,476 KB
testcase_41 AC 82 ms
61,824 KB
testcase_42 AC 82 ms
62,080 KB
testcase_43 AC 80 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().strip()

def Map():
  return list(map(int,input().split()))

L,N = Map()
X = Map()
W = []
for i in range(N-1):
  d = X[i+1] - X[i]
  W.append(d)

dp = [0 for i in range(L+1)]
dp[0] = 1
for w in W:
  for l in range(L,-1,-1):
    if dp[l]:
      ll = l + w
      if ll <= L:
        dp[ll] = 1

ans = L
for l in range(L):
  if dp[l]:
    a = l + X[0]
    b = L - a
    ans = min(ans,abs(a-b))
print(ans)
0