結果
問題 | No.2672 Subset Xor Sum |
ユーザー | LyricalMaestro |
提出日時 | 2024-08-03 01:12:26 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 857 bytes |
コンパイル時間 | 389 ms |
コンパイル使用メモリ | 82,044 KB |
実行使用メモリ | 142,292 KB |
最終ジャッジ日時 | 2024-08-03 01:12:34 |
合計ジャッジ時間 | 6,965 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,640 KB |
testcase_01 | AC | 35 ms
52,724 KB |
testcase_02 | AC | 44 ms
63,804 KB |
testcase_03 | AC | 43 ms
60,124 KB |
testcase_04 | AC | 42 ms
61,692 KB |
testcase_05 | AC | 42 ms
60,436 KB |
testcase_06 | AC | 42 ms
60,892 KB |
testcase_07 | AC | 46 ms
63,512 KB |
testcase_08 | AC | 46 ms
62,664 KB |
testcase_09 | AC | 46 ms
63,140 KB |
testcase_10 | AC | 42 ms
61,924 KB |
testcase_11 | AC | 43 ms
61,136 KB |
testcase_12 | AC | 46 ms
62,860 KB |
testcase_13 | AC | 46 ms
63,140 KB |
testcase_14 | AC | 47 ms
63,004 KB |
testcase_15 | AC | 45 ms
63,368 KB |
testcase_16 | AC | 45 ms
63,252 KB |
testcase_17 | AC | 47 ms
63,352 KB |
testcase_18 | AC | 46 ms
62,724 KB |
testcase_19 | AC | 46 ms
62,836 KB |
testcase_20 | AC | 45 ms
62,816 KB |
testcase_21 | AC | 46 ms
63,084 KB |
testcase_22 | AC | 42 ms
60,492 KB |
testcase_23 | AC | 42 ms
60,108 KB |
testcase_24 | AC | 42 ms
61,684 KB |
testcase_25 | AC | 42 ms
60,688 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 44 ms
62,664 KB |
testcase_29 | AC | 43 ms
61,424 KB |
testcase_30 | AC | 47 ms
63,080 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | AC | 37 ms
51,712 KB |
testcase_67 | WA | - |
ソースコード
## https://yukicoder.me/problems/no/2672 def main(): N = int(input()) A = list(map(int, input().split())) if N <= 16: for bit in range(1, 2 ** N - 1): ans = 0 for i in range(N): if bit & (1 << i) > 0: ans ^= A[i] if ans == 0: print("Yes") return print("No") else: a_set = set() for a in A: if a not in a_set: b_array = [] for b in a_set: b_array.append(a ^ b) for b in b_array: a_set.add(b) a_set.add(a) print(a_set) else: print("Yes") return print("No") if __name__ == "__main__": main()