結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 21:42:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 351 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 643,392 KB
最終ジャッジ日時 2024-05-10 00:22:45
合計ジャッジ時間 10,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,320 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 44 ms
53,248 KB
testcase_03 AC 48 ms
53,248 KB
testcase_04 AC 45 ms
52,992 KB
testcase_05 AC 44 ms
53,120 KB
testcase_06 AC 45 ms
53,120 KB
testcase_07 AC 44 ms
53,632 KB
testcase_08 WA -
testcase_09 AC 45 ms
53,248 KB
testcase_10 AC 46 ms
53,504 KB
testcase_11 AC 46 ms
53,888 KB
testcase_12 WA -
testcase_13 AC 45 ms
53,248 KB
testcase_14 AC 45 ms
53,120 KB
testcase_15 AC 45 ms
53,248 KB
testcase_16 WA -
testcase_17 AC 43 ms
53,248 KB
testcase_18 AC 45 ms
53,248 KB
testcase_19 AC 46 ms
53,760 KB
testcase_20 AC 44 ms
53,120 KB
testcase_21 AC 45 ms
53,248 KB
testcase_22 AC 44 ms
53,376 KB
testcase_23 AC 45 ms
52,992 KB
testcase_24 AC 44 ms
53,504 KB
testcase_25 AC 45 ms
53,120 KB
testcase_26 AC 45 ms
53,248 KB
testcase_27 AC 46 ms
52,992 KB
testcase_28 AC 44 ms
53,120 KB
testcase_29 AC 45 ms
52,992 KB
testcase_30 AC 46 ms
53,888 KB
testcase_31 AC 44 ms
53,504 KB
testcase_32 WA -
testcase_33 AC 45 ms
53,248 KB
testcase_34 AC 44 ms
53,376 KB
testcase_35 AC 45 ms
53,376 KB
testcase_36 AC 44 ms
52,992 KB
testcase_37 AC 444 ms
237,056 KB
testcase_38 AC 802 ms
237,380 KB
testcase_39 AC 383 ms
238,888 KB
testcase_40 AC 431 ms
237,036 KB
testcase_41 AC 440 ms
238,484 KB
testcase_42 AC 430 ms
237,176 KB
testcase_43 AC 42 ms
53,612 KB
testcase_44 AC 41 ms
54,276 KB
testcase_45 AC 607 ms
242,368 KB
testcase_46 AC 39 ms
54,144 KB
testcase_47 MLE -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import copy

def main():
    N,K = map(int,input().split())
    A = list(map(int,input().split()))
    s = set([])
    for a in A:
        pres = copy.copy(s)
        for x in pres:
            s.add(x-a)
            s.add(a-x)
        s.add(a)
        if K in s:
            print("Yes");exit()
    print("No")


if __name__ == '__main__':
    main()
0