結果

問題 No.2672 Subset Xor Sum
ユーザー mutualnsmutualns
提出日時 2024-03-16 14:28:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 396,472 KB
最終ジャッジ日時 2024-09-30 03:59:01
合計ジャッジ時間 13,933 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
58,744 KB
testcase_01 AC 40 ms
58,760 KB
testcase_02 AC 44 ms
60,200 KB
testcase_03 AC 42 ms
61,284 KB
testcase_04 AC 42 ms
60,388 KB
testcase_05 AC 41 ms
59,896 KB
testcase_06 AC 41 ms
59,780 KB
testcase_07 AC 43 ms
61,032 KB
testcase_08 AC 42 ms
60,232 KB
testcase_09 AC 41 ms
60,356 KB
testcase_10 AC 42 ms
60,616 KB
testcase_11 AC 41 ms
59,820 KB
testcase_12 AC 41 ms
60,332 KB
testcase_13 AC 42 ms
59,496 KB
testcase_14 AC 42 ms
60,972 KB
testcase_15 AC 42 ms
59,736 KB
testcase_16 AC 43 ms
60,324 KB
testcase_17 AC 42 ms
61,356 KB
testcase_18 AC 42 ms
59,880 KB
testcase_19 AC 41 ms
59,732 KB
testcase_20 AC 41 ms
60,176 KB
testcase_21 AC 42 ms
60,900 KB
testcase_22 AC 42 ms
59,904 KB
testcase_23 AC 42 ms
60,176 KB
testcase_24 AC 41 ms
59,360 KB
testcase_25 AC 42 ms
60,504 KB
testcase_26 AC 63 ms
70,240 KB
testcase_27 AC 63 ms
70,764 KB
testcase_28 AC 44 ms
62,296 KB
testcase_29 AC 43 ms
61,192 KB
testcase_30 AC 41 ms
61,128 KB
testcase_31 AC 129 ms
131,520 KB
testcase_32 AC 71 ms
94,556 KB
testcase_33 AC 67 ms
91,608 KB
testcase_34 AC 112 ms
111,360 KB
testcase_35 AC 131 ms
131,532 KB
testcase_36 AC 116 ms
115,748 KB
testcase_37 AC 121 ms
124,816 KB
testcase_38 AC 77 ms
100,084 KB
testcase_39 AC 137 ms
141,796 KB
testcase_40 AC 53 ms
75,212 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 AC 40 ms
60,608 KB
testcase_47 AC 941 ms
396,120 KB
testcase_48 AC 39 ms
59,860 KB
testcase_49 AC 39 ms
60,232 KB
testcase_50 AC 39 ms
60,220 KB
testcase_51 AC 942 ms
396,384 KB
testcase_52 AC 936 ms
396,472 KB
testcase_53 AC 956 ms
396,212 KB
testcase_54 AC 967 ms
396,200 KB
testcase_55 AC 950 ms
396,336 KB
testcase_56 AC 41 ms
60,172 KB
testcase_57 AC 541 ms
297,144 KB
testcase_58 AC 176 ms
137,360 KB
testcase_59 AC 36 ms
52,448 KB
testcase_60 AC 38 ms
60,004 KB
testcase_61 AC 39 ms
58,992 KB
testcase_62 AC 420 ms
205,572 KB
testcase_63 AC 495 ms
228,816 KB
testcase_64 AC 782 ms
338,788 KB
testcase_65 AC 251 ms
137,436 KB
testcase_66 AC 38 ms
58,516 KB
testcase_67 AC 35 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

if n>5002:
  print('Yes')
  exit()

s=a[0]

for i in range(1,n):
	s^=a[i]
	
if s!=0:
	print('No')
	exit()
	
dp=[[0]*(1<<13) for _ in range(n)]
x=a[0]

for i in range(n-1):
  dp[i+1][x]=1
  for j in range(1<<13):
    if dp[i][j]:
      dp[i+1][j]=1
      dp[i+1][a[i+1]^j]=1
  x^=a[i+1]
  
if dp[-1][0]:
  print('Yes')
else:
  print('No')
0