結果

問題 No.2542 Yokan for Two
ユーザー tatyamtatyam
提出日時 2023-11-24 22:01:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,752 KB
最終ジャッジ日時 2024-09-26 09:19:05
合計ジャッジ時間 4,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 43 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 68 ms
76,416 KB
testcase_04 AC 52 ms
73,088 KB
testcase_05 AC 69 ms
76,268 KB
testcase_06 AC 46 ms
60,416 KB
testcase_07 AC 89 ms
76,612 KB
testcase_08 AC 75 ms
76,268 KB
testcase_09 AC 69 ms
76,672 KB
testcase_10 AC 53 ms
71,808 KB
testcase_11 AC 52 ms
73,344 KB
testcase_12 AC 68 ms
76,672 KB
testcase_13 AC 52 ms
71,296 KB
testcase_14 AC 76 ms
76,288 KB
testcase_15 AC 65 ms
76,416 KB
testcase_16 AC 65 ms
76,752 KB
testcase_17 AC 64 ms
76,416 KB
testcase_18 AC 66 ms
76,624 KB
testcase_19 AC 61 ms
75,392 KB
testcase_20 AC 60 ms
75,016 KB
testcase_21 AC 58 ms
75,336 KB
testcase_22 AC 59 ms
75,300 KB
testcase_23 AC 59 ms
75,024 KB
testcase_24 AC 48 ms
63,360 KB
testcase_25 AC 51 ms
65,792 KB
testcase_26 AC 53 ms
66,816 KB
testcase_27 AC 52 ms
67,200 KB
testcase_28 AC 54 ms
68,352 KB
testcase_29 AC 69 ms
76,672 KB
testcase_30 AC 60 ms
75,604 KB
testcase_31 AC 61 ms
75,648 KB
testcase_32 AC 59 ms
75,136 KB
testcase_33 AC 60 ms
75,328 KB
testcase_34 AC 62 ms
75,264 KB
testcase_35 AC 63 ms
75,528 KB
testcase_36 AC 60 ms
75,400 KB
testcase_37 AC 64 ms
75,304 KB
testcase_38 AC 62 ms
75,392 KB
testcase_39 AC 67 ms
76,416 KB
testcase_40 AC 66 ms
76,544 KB
testcase_41 AC 65 ms
76,672 KB
testcase_42 AC 65 ms
76,416 KB
testcase_43 AC 66 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline

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

dp0 = 1 << L
dp1 = 0

for x in X:
    dp0 <<= x
    dp1 >>= x
    if N:
        N -= 1
        dp0 = dp1 = dp0 | dp1

ans = bin(dp1)[:1:-1]
print(min(abs(i - L) for i, c in enumerate(ans) if c == '1'))
0