結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー shakayamishakayami
提出日時 2021-11-11 21:01:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 385 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 662,772 KB
最終ジャッジ日時 2024-11-23 18:07:56
合計ジャッジ時間 63,142 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
59,556 KB
testcase_01 MLE -
testcase_02 AC 39 ms
59,844 KB
testcase_03 MLE -
testcase_04 WA -
testcase_05 MLE -
testcase_06 WA -
testcase_07 MLE -
testcase_08 AC 36 ms
58,892 KB
testcase_09 MLE -
testcase_10 AC 43 ms
63,908 KB
testcase_11 MLE -
testcase_12 AC 36 ms
59,096 KB
testcase_13 AC 37 ms
377,028 KB
testcase_14 AC 51 ms
70,372 KB
testcase_15 MLE -
testcase_16 WA -
testcase_17 MLE -
testcase_18 AC 35 ms
59,856 KB
testcase_19 AC 52 ms
420,876 KB
testcase_20 MLE -
testcase_21 AC 50 ms
59,180 KB
testcase_22 AC 35 ms
59,292 KB
testcase_23 MLE -
testcase_24 AC 35 ms
60,144 KB
testcase_25 MLE -
testcase_26 AC 35 ms
59,336 KB
testcase_27 MLE -
testcase_28 AC 35 ms
58,860 KB
testcase_29 MLE -
testcase_30 AC 35 ms
58,040 KB
testcase_31 MLE -
testcase_32 AC 36 ms
58,664 KB
testcase_33 MLE -
testcase_34 AC 36 ms
59,396 KB
testcase_35 MLE -
testcase_36 AC 35 ms
59,684 KB
testcase_37 MLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=[int(i) for i in input().split()]
dp=[set() for i in range(1<<N)]
for i in range(N):
    dp[1<<i].add(abs(A[i]))
K=abs(K)
for S in range(1<<N):
    for i in range(N):
        if (S>>i)&1==0:
            for x in dp[S]:
                dp[S|(1<<i)].add(abs(x-A[i]))
for S in range(1<<N):
    if K in dp[S]:
        print("Yes")
        exit()
print("No")
0