結果

問題 No.2542 Yokan for Two
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-11-24 21:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 1,718 ms
コンパイル使用メモリ 81,492 KB
実行使用メモリ 64,384 KB
最終ジャッジ日時 2024-09-26 09:13:13
合計ジャッジ時間 5,880 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 68 ms
63,232 KB
testcase_04 AC 63 ms
61,952 KB
testcase_05 AC 91 ms
62,848 KB
testcase_06 AC 45 ms
60,288 KB
testcase_07 AC 124 ms
62,720 KB
testcase_08 AC 68 ms
62,592 KB
testcase_09 AC 123 ms
62,976 KB
testcase_10 AC 58 ms
62,592 KB
testcase_11 AC 58 ms
61,184 KB
testcase_12 AC 80 ms
63,488 KB
testcase_13 AC 56 ms
62,080 KB
testcase_14 AC 103 ms
62,464 KB
testcase_15 AC 111 ms
62,720 KB
testcase_16 AC 106 ms
62,720 KB
testcase_17 AC 104 ms
62,720 KB
testcase_18 AC 111 ms
62,848 KB
testcase_19 AC 79 ms
61,056 KB
testcase_20 AC 76 ms
61,568 KB
testcase_21 AC 78 ms
61,356 KB
testcase_22 AC 78 ms
61,440 KB
testcase_23 AC 80 ms
61,312 KB
testcase_24 AC 47 ms
60,416 KB
testcase_25 AC 53 ms
62,336 KB
testcase_26 AC 52 ms
62,592 KB
testcase_27 AC 54 ms
62,848 KB
testcase_28 AC 53 ms
62,848 KB
testcase_29 AC 70 ms
64,384 KB
testcase_30 AC 105 ms
62,336 KB
testcase_31 AC 105 ms
62,336 KB
testcase_32 AC 106 ms
61,952 KB
testcase_33 AC 107 ms
62,336 KB
testcase_34 AC 111 ms
62,208 KB
testcase_35 AC 110 ms
62,336 KB
testcase_36 AC 117 ms
62,464 KB
testcase_37 AC 111 ms
61,948 KB
testcase_38 AC 110 ms
63,100 KB
testcase_39 AC 115 ms
63,744 KB
testcase_40 AC 124 ms
64,256 KB
testcase_41 AC 109 ms
62,976 KB
testcase_42 AC 113 ms
62,720 KB
testcase_43 AC 110 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l,n = map(int,input().split())
X = list(map(int,input().split())) + [l]
dp = [[0]*(l+1) for i in range(2)]
dp[0][X[0]] = 1

for bx,x in zip(X,X[1:]):
    dif = x-bx

    for i in range(l)[::-1]:

        if dp[0][i]:
            dp[0][i+dif] = 1
            dp[1][i] = 1
        
        if dp[1][i]:
            dp[0][i+dif] = 1

ans = l
for i in range(l+1):
    if dp[1][i]:
        ans = min(ans,abs(i - (l-i)))
print(ans)
0