結果

問題 No.1538 引きこもりさんは引き算が得意。
ユーザー ygd.ygd.
提出日時 2021-06-12 21:42:42
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 351 bytes
コンパイル時間 452 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 1,696,596 KB
最終ジャッジ日時 2024-12-17 19:17:26
合計ジャッジ時間 33,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,576 KB
testcase_01 MLE -
testcase_02 AC 41 ms
60,916 KB
testcase_03 MLE -
testcase_04 AC 39 ms
54,356 KB
testcase_05 AC 40 ms
54,576 KB
testcase_06 AC 41 ms
54,012 KB
testcase_07 AC 38 ms
53,608 KB
testcase_08 WA -
testcase_09 AC 38 ms
53,576 KB
testcase_10 AC 39 ms
54,588 KB
testcase_11 AC 41 ms
54,452 KB
testcase_12 WA -
testcase_13 AC 40 ms
54,068 KB
testcase_14 AC 40 ms
55,272 KB
testcase_15 AC 39 ms
54,564 KB
testcase_16 WA -
testcase_17 AC 38 ms
53,852 KB
testcase_18 AC 39 ms
54,992 KB
testcase_19 AC 41 ms
54,712 KB
testcase_20 AC 42 ms
53,800 KB
testcase_21 AC 41 ms
53,604 KB
testcase_22 AC 41 ms
54,624 KB
testcase_23 AC 41 ms
54,468 KB
testcase_24 AC 41 ms
54,748 KB
testcase_25 AC 40 ms
54,696 KB
testcase_26 AC 41 ms
54,792 KB
testcase_27 AC 39 ms
54,212 KB
testcase_28 AC 41 ms
53,812 KB
testcase_29 AC 41 ms
54,636 KB
testcase_30 AC 39 ms
53,732 KB
testcase_31 AC 39 ms
54,044 KB
testcase_32 WA -
testcase_33 AC 42 ms
53,948 KB
testcase_34 AC 39 ms
54,344 KB
testcase_35 AC 40 ms
53,696 KB
testcase_36 AC 42 ms
54,436 KB
testcase_37 AC 321 ms
237,820 KB
testcase_38 AC 574 ms
237,532 KB
testcase_39 AC 297 ms
238,592 KB
testcase_40 AC 292 ms
238,812 KB
testcase_41 AC 291 ms
237,480 KB
testcase_42 AC 298 ms
237,940 KB
testcase_43 AC 40 ms
53,500 KB
testcase_44 AC 40 ms
54,268 KB
testcase_45 AC 440 ms
242,420 KB
testcase_46 AC 40 ms
54,012 KB
testcase_47 TLE -
testcase_48 TLE -
testcase_49 AC 319 ms
247,648 KB
testcase_50 AC 372 ms
238,220 KB
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 MLE -
権限があれば一括ダウンロードができます

ソースコード

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