結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー shakayamishakayami
提出日時 2021-11-11 21:00:24
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 407 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 82,388 KB
実行使用メモリ 1,614,080 KB
最終ジャッジ日時 2024-11-23 18:03:49
合計ジャッジ時間 65,742 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
57,344 KB
testcase_01 MLE -
testcase_02 AC 35 ms
57,088 KB
testcase_03 MLE -
testcase_04 AC 38 ms
57,088 KB
testcase_05 MLE -
testcase_06 AC 34 ms
57,344 KB
testcase_07 MLE -
testcase_08 AC 35 ms
57,216 KB
testcase_09 MLE -
testcase_10 AC 43 ms
64,896 KB
testcase_11 MLE -
testcase_12 AC 38 ms
57,344 KB
testcase_13 MLE -
testcase_14 AC 62 ms
74,112 KB
testcase_15 MLE -
testcase_16 AC 36 ms
57,472 KB
testcase_17 MLE -
testcase_18 AC 34 ms
56,832 KB
testcase_19 AC 36 ms
448,896 KB
testcase_20 AC 36 ms
57,472 KB
testcase_21 MLE -
testcase_22 AC 36 ms
57,600 KB
testcase_23 MLE -
testcase_24 AC 38 ms
57,728 KB
testcase_25 MLE -
testcase_26 AC 37 ms
57,984 KB
testcase_27 MLE -
testcase_28 AC 38 ms
57,600 KB
testcase_29 MLE -
testcase_30 MLE -
testcase_31 AC 37 ms
58,680 KB
testcase_32 AC 37 ms
52,060 KB
testcase_33 AC 37 ms
52,140 KB
testcase_34 AC 35 ms
53,432 KB
testcase_35 AC 36 ms
52,648 KB
testcase_36 AC 34 ms
52,156 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(A[i])
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(x-A[i])
                dp[S|(1<<i)].add(A[i]-x)
for S in range(1<<N):
    if K in dp[S]:
        print("Yes")
        exit()
print("No")
0