結果

問題 No.2542 Yokan for Two
ユーザー detteiuudetteiuu
提出日時 2024-10-17 21:53:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 255 ms / 2,000 ms
コード長 490 bytes
コンパイル時間 407 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 139,448 KB
最終ジャッジ日時 2024-10-17 21:54:01
合計ジャッジ時間 7,912 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,836 KB
testcase_01 AC 30 ms
53,424 KB
testcase_02 AC 32 ms
53,296 KB
testcase_03 AC 94 ms
85,156 KB
testcase_04 AC 91 ms
76,696 KB
testcase_05 AC 173 ms
99,096 KB
testcase_06 AC 38 ms
60,672 KB
testcase_07 AC 238 ms
130,272 KB
testcase_08 AC 92 ms
79,832 KB
testcase_09 AC 227 ms
127,068 KB
testcase_10 AC 60 ms
68,000 KB
testcase_11 AC 67 ms
71,244 KB
testcase_12 AC 124 ms
89,552 KB
testcase_13 AC 61 ms
68,736 KB
testcase_14 AC 230 ms
132,152 KB
testcase_15 AC 229 ms
137,300 KB
testcase_16 AC 220 ms
135,472 KB
testcase_17 AC 208 ms
131,820 KB
testcase_18 AC 226 ms
137,068 KB
testcase_19 AC 139 ms
102,228 KB
testcase_20 AC 143 ms
98,588 KB
testcase_21 AC 130 ms
99,256 KB
testcase_22 AC 132 ms
100,940 KB
testcase_23 AC 134 ms
101,348 KB
testcase_24 AC 44 ms
62,624 KB
testcase_25 AC 58 ms
68,168 KB
testcase_26 AC 57 ms
68,800 KB
testcase_27 AC 79 ms
71,000 KB
testcase_28 AC 59 ms
71,332 KB
testcase_29 AC 91 ms
84,116 KB
testcase_30 AC 125 ms
89,548 KB
testcase_31 AC 137 ms
90,512 KB
testcase_32 AC 119 ms
87,832 KB
testcase_33 AC 127 ms
90,792 KB
testcase_34 AC 144 ms
95,888 KB
testcase_35 AC 150 ms
96,796 KB
testcase_36 AC 140 ms
94,588 KB
testcase_37 AC 149 ms
99,004 KB
testcase_38 AC 148 ms
101,148 KB
testcase_39 AC 255 ms
139,448 KB
testcase_40 AC 230 ms
139,208 KB
testcase_41 AC 230 ms
138,028 KB
testcase_42 AC 230 ms
138,528 KB
testcase_43 AC 252 ms
137,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

A = [X[0]]
for i in range(N-1):
    A.append(X[i+1]-X[i])
sumA = sum(A)

dp = [[False]*(sumA+1) for _ in range(len(A)+1)]
dp[0][0] = True
for i in range(len(A)):
    for j in range(sumA+1):
        if not dp[i][j]:
            continue
        if 1 <= i:
            dp[i+1][j] = True
        dp[i+1][j+A[i]] = True

ans = 10**18
for i in range(sumA+1):
    if dp[-1][i]:
        ans = min(ans, abs(i-(L-i)))

print(ans)
0