結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,040 KB
testcase_01 AC 42 ms
58,688 KB
testcase_02 AC 44 ms
60,568 KB
testcase_03 AC 44 ms
62,044 KB
testcase_04 AC 44 ms
60,264 KB
testcase_05 AC 43 ms
60,632 KB
testcase_06 AC 43 ms
60,564 KB
testcase_07 AC 43 ms
59,952 KB
testcase_08 AC 43 ms
60,532 KB
testcase_09 AC 44 ms
60,300 KB
testcase_10 AC 42 ms
60,320 KB
testcase_11 AC 43 ms
60,628 KB
testcase_12 AC 43 ms
59,832 KB
testcase_13 AC 44 ms
61,544 KB
testcase_14 AC 44 ms
59,668 KB
testcase_15 AC 43 ms
60,680 KB
testcase_16 AC 44 ms
59,944 KB
testcase_17 AC 44 ms
60,864 KB
testcase_18 AC 44 ms
60,276 KB
testcase_19 AC 45 ms
61,404 KB
testcase_20 AC 45 ms
60,392 KB
testcase_21 AC 43 ms
60,188 KB
testcase_22 AC 43 ms
59,792 KB
testcase_23 AC 42 ms
60,360 KB
testcase_24 AC 43 ms
60,680 KB
testcase_25 AC 43 ms
60,000 KB
testcase_26 AC 65 ms
69,936 KB
testcase_27 AC 65 ms
70,376 KB
testcase_28 AC 44 ms
61,592 KB
testcase_29 AC 45 ms
61,060 KB
testcase_30 AC 43 ms
59,856 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 AC 90 ms
115,908 KB
testcase_42 AC 125 ms
125,008 KB
testcase_43 AC 114 ms
111,044 KB
testcase_44 AC 134 ms
141,632 KB
testcase_45 AC 110 ms
111,528 KB
testcase_46 AC 43 ms
59,916 KB
testcase_47 AC 949 ms
396,460 KB
testcase_48 AC 41 ms
60,160 KB
testcase_49 AC 41 ms
60,160 KB
testcase_50 AC 41 ms
59,904 KB
testcase_51 AC 980 ms
396,800 KB
testcase_52 AC 950 ms
396,976 KB
testcase_53 AC 970 ms
396,608 KB
testcase_54 AC 955 ms
396,636 KB
testcase_55 AC 969 ms
396,676 KB
testcase_56 AC 41 ms
61,440 KB
testcase_57 AC 535 ms
297,376 KB
testcase_58 AC 176 ms
137,404 KB
testcase_59 AC 37 ms
53,372 KB
testcase_60 AC 40 ms
61,200 KB
testcase_61 AC 41 ms
60,932 KB
testcase_62 AC 420 ms
205,904 KB
testcase_63 AC 499 ms
229,120 KB
testcase_64 AC 766 ms
339,156 KB
testcase_65 AC 252 ms
137,452 KB
testcase_66 AC 40 ms
58,368 KB
testcase_67 AC 36 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if n>5002:
  print('No')
  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