結果

問題 No.2672 Subset Xor Sum
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-15 21:55:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 246 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 141,736 KB
最終ジャッジ日時 2024-09-30 00:59:03
合計ジャッジ時間 5,840 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,336 KB
testcase_01 AC 36 ms
53,648 KB
testcase_02 AC 46 ms
61,120 KB
testcase_03 AC 45 ms
60,344 KB
testcase_04 AC 44 ms
61,508 KB
testcase_05 AC 44 ms
61,308 KB
testcase_06 AC 43 ms
61,304 KB
testcase_07 AC 44 ms
60,188 KB
testcase_08 AC 45 ms
61,260 KB
testcase_09 AC 44 ms
60,704 KB
testcase_10 AC 41 ms
60,280 KB
testcase_11 AC 41 ms
60,456 KB
testcase_12 AC 42 ms
62,120 KB
testcase_13 AC 44 ms
60,692 KB
testcase_14 AC 45 ms
60,576 KB
testcase_15 AC 45 ms
60,128 KB
testcase_16 AC 45 ms
61,828 KB
testcase_17 AC 44 ms
60,672 KB
testcase_18 AC 45 ms
60,824 KB
testcase_19 AC 44 ms
59,904 KB
testcase_20 AC 45 ms
59,940 KB
testcase_21 AC 47 ms
60,484 KB
testcase_22 AC 43 ms
60,028 KB
testcase_23 AC 44 ms
61,192 KB
testcase_24 AC 45 ms
60,604 KB
testcase_25 AC 44 ms
61,696 KB
testcase_26 AC 35 ms
53,540 KB
testcase_27 AC 35 ms
52,368 KB
testcase_28 AC 43 ms
61,248 KB
testcase_29 AC 42 ms
60,836 KB
testcase_30 AC 42 ms
61,048 KB
testcase_31 AC 131 ms
131,764 KB
testcase_32 AC 76 ms
95,996 KB
testcase_33 AC 70 ms
90,504 KB
testcase_34 AC 114 ms
111,252 KB
testcase_35 AC 134 ms
131,552 KB
testcase_36 AC 122 ms
115,852 KB
testcase_37 AC 130 ms
124,388 KB
testcase_38 AC 79 ms
99,776 KB
testcase_39 AC 145 ms
141,736 KB
testcase_40 AC 54 ms
74,292 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 41 ms
60,088 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 40 ms
58,604 KB
testcase_52 AC 39 ms
58,968 KB
testcase_53 AC 39 ms
59,184 KB
testcase_54 AC 41 ms
60,572 KB
testcase_55 AC 40 ms
59,372 KB
testcase_56 WA -
testcase_57 AC 40 ms
59,188 KB
testcase_58 AC 40 ms
59,416 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 39 ms
58,560 KB
testcase_63 AC 40 ms
58,740 KB
testcase_64 AC 40 ms
59,076 KB
testcase_65 AC 39 ms
58,948 KB
testcase_66 AC 38 ms
53,312 KB
testcase_67 AC 36 ms
53,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
if n>16:
	print("Yes")
else:
	for i in range(1,(1<<n)-1):
		b=0
		c=0
		for j in range(n):
			if (i>>j)&1:
				b^=a[j]
			else:
				c^=a[j]
		if b==0 and c==0:
			print("Yes")
			exit()
	print("No")
0