結果

問題 No.2672 Subset Xor Sum
ユーザー timitimi
提出日時 2024-03-15 21:44:02
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 400 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 142,768 KB
最終ジャッジ日時 2024-09-30 00:38:19
合計ジャッジ時間 6,648 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,892 KB
testcase_01 AC 43 ms
58,240 KB
testcase_02 RE -
testcase_03 AC 46 ms
59,832 KB
testcase_04 AC 44 ms
59,596 KB
testcase_05 AC 43 ms
60,516 KB
testcase_06 AC 43 ms
59,676 KB
testcase_07 AC 44 ms
59,836 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 44 ms
60,196 KB
testcase_25 AC 43 ms
61,100 KB
testcase_26 AC 37 ms
52,568 KB
testcase_27 AC 38 ms
53,128 KB
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 43 ms
59,852 KB
testcase_31 AC 136 ms
132,356 KB
testcase_32 AC 74 ms
96,524 KB
testcase_33 AC 70 ms
92,516 KB
testcase_34 AC 116 ms
111,288 KB
testcase_35 AC 137 ms
132,476 KB
testcase_36 AC 123 ms
116,520 KB
testcase_37 AC 128 ms
125,088 KB
testcase_38 AC 82 ms
101,356 KB
testcase_39 AC 146 ms
142,768 KB
testcase_40 AC 55 ms
77,012 KB
testcase_41 AC 91 ms
116,980 KB
testcase_42 AC 126 ms
125,620 KB
testcase_43 AC 115 ms
111,088 KB
testcase_44 AC 140 ms
142,108 KB
testcase_45 AC 110 ms
111,404 KB
testcase_46 AC 42 ms
59,788 KB
testcase_47 RE -
testcase_48 AC 41 ms
60,840 KB
testcase_49 AC 44 ms
60,052 KB
testcase_50 AC 43 ms
60,368 KB
testcase_51 RE -
testcase_52 AC 44 ms
61,220 KB
testcase_53 AC 44 ms
60,168 KB
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 40 ms
60,340 KB
testcase_57 AC 43 ms
61,136 KB
testcase_58 AC 42 ms
62,080 KB
testcase_59 AC 35 ms
53,308 KB
testcase_60 AC 39 ms
60,024 KB
testcase_61 AC 39 ms
60,228 KB
testcase_62 RE -
testcase_63 RE -
testcase_64 AC 40 ms
60,576 KB
testcase_65 RE -
testcase_66 WA -
testcase_67 AC 37 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int, input().split()))

c=0
for a in A:
  c^=a 

if c!=0:
  print('No')
  exit()
if len(A)!=len(set(A)):
  print('Yes')
  exit()

dp=[0]*5001 
f=0
for j in range(N):
  a=A[j]
  ndp=[0]*5001
  for i in range(5001):
    if dp[i]==1:
      ndp[i]=1
      ndp[i^a]=1 
  dp=ndp 
  dp[a]=1
  if dp[0]==1 and j!=N-1:
    f=1
    break 
if f==1:
  print('Yes')
else:
  print('No')

0