結果
問題 | No.1538 引きこもりさんは引き算が得意。 |
ユーザー | H3PO4 |
提出日時 | 2024-04-14 09:24:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 425 bytes |
コンパイル時間 | 143 ms |
コンパイル使用メモリ | 82,092 KB |
実行使用メモリ | 677,720 KB |
最終ジャッジ日時 | 2024-10-03 06:25:57 |
合計ジャッジ時間 | 10,476 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
57,472 KB |
testcase_01 | AC | 39 ms
52,096 KB |
testcase_02 | AC | 39 ms
51,840 KB |
testcase_03 | AC | 35 ms
52,096 KB |
testcase_04 | AC | 36 ms
52,096 KB |
testcase_05 | AC | 36 ms
52,096 KB |
testcase_06 | AC | 35 ms
51,712 KB |
testcase_07 | AC | 35 ms
52,096 KB |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
51,968 KB |
testcase_10 | AC | 36 ms
51,968 KB |
testcase_11 | AC | 36 ms
51,840 KB |
testcase_12 | WA | - |
testcase_13 | AC | 34 ms
51,712 KB |
testcase_14 | AC | 37 ms
52,096 KB |
testcase_15 | AC | 35 ms
52,224 KB |
testcase_16 | WA | - |
testcase_17 | AC | 35 ms
51,968 KB |
testcase_18 | AC | 34 ms
51,584 KB |
testcase_19 | AC | 36 ms
51,968 KB |
testcase_20 | AC | 34 ms
52,096 KB |
testcase_21 | AC | 33 ms
51,968 KB |
testcase_22 | AC | 36 ms
51,584 KB |
testcase_23 | AC | 35 ms
51,968 KB |
testcase_24 | AC | 35 ms
51,968 KB |
testcase_25 | AC | 34 ms
52,096 KB |
testcase_26 | AC | 35 ms
51,968 KB |
testcase_27 | AC | 37 ms
52,224 KB |
testcase_28 | AC | 37 ms
52,096 KB |
testcase_29 | AC | 34 ms
52,608 KB |
testcase_30 | AC | 36 ms
52,224 KB |
testcase_31 | AC | 35 ms
52,096 KB |
testcase_32 | WA | - |
testcase_33 | AC | 35 ms
51,712 KB |
testcase_34 | AC | 35 ms
52,224 KB |
testcase_35 | AC | 35 ms
51,584 KB |
testcase_36 | AC | 34 ms
52,096 KB |
testcase_37 | AC | 581 ms
303,712 KB |
testcase_38 | AC | 678 ms
303,760 KB |
testcase_39 | AC | 372 ms
251,264 KB |
testcase_40 | AC | 590 ms
303,844 KB |
testcase_41 | AC | 596 ms
304,036 KB |
testcase_42 | AC | 599 ms
303,708 KB |
testcase_43 | AC | 40 ms
60,800 KB |
testcase_44 | AC | 371 ms
251,776 KB |
testcase_45 | AC | 749 ms
307,424 KB |
testcase_46 | AC | 39 ms
51,584 KB |
testcase_47 | MLE | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
def solve(K, A): if K == sum(A) or K == -sum(A): return False st = set() for a in A: new_st = set() new_st.add(a) for x in st: new_st.add(x) new_st.add(a - x) new_st.add(x - a) st = new_st # print(st) return K in st N, K = map(int, input().split()) A = list(map(int, input().split())) print("Yes" if solve(K, A) else "No")