結果

問題 No.2672 Subset Xor Sum
ユーザー PNJPNJ
提出日時 2024-03-15 21:41:58
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 466 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 453,300 KB
最終ジャッジ日時 2024-09-30 00:35:44
合計ジャッジ時間 12,602 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,392 KB
testcase_01 AC 48 ms
59,084 KB
testcase_02 AC 45 ms
60,416 KB
testcase_03 AC 48 ms
60,928 KB
testcase_04 AC 48 ms
60,928 KB
testcase_05 AC 47 ms
61,312 KB
testcase_06 AC 48 ms
61,056 KB
testcase_07 AC 46 ms
60,660 KB
testcase_08 AC 47 ms
60,416 KB
testcase_09 AC 50 ms
60,544 KB
testcase_10 AC 46 ms
60,800 KB
testcase_11 AC 46 ms
60,672 KB
testcase_12 AC 46 ms
60,288 KB
testcase_13 AC 47 ms
60,416 KB
testcase_14 AC 47 ms
60,288 KB
testcase_15 AC 46 ms
60,544 KB
testcase_16 AC 46 ms
60,416 KB
testcase_17 AC 45 ms
60,032 KB
testcase_18 AC 45 ms
60,672 KB
testcase_19 AC 46 ms
60,672 KB
testcase_20 AC 47 ms
60,672 KB
testcase_21 AC 45 ms
60,672 KB
testcase_22 AC 45 ms
60,416 KB
testcase_23 AC 45 ms
60,544 KB
testcase_24 AC 46 ms
60,416 KB
testcase_25 AC 44 ms
60,928 KB
testcase_26 AC 68 ms
71,936 KB
testcase_27 AC 66 ms
72,192 KB
testcase_28 AC 46 ms
61,440 KB
testcase_29 AC 47 ms
61,568 KB
testcase_30 AC 45 ms
60,544 KB
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 AC 95 ms
117,072 KB
testcase_42 AC 130 ms
125,272 KB
testcase_43 AC 118 ms
111,512 KB
testcase_44 AC 144 ms
142,328 KB
testcase_45 AC 113 ms
111,104 KB
testcase_46 AC 43 ms
60,032 KB
testcase_47 AC 882 ms
452,224 KB
testcase_48 AC 43 ms
60,308 KB
testcase_49 AC 43 ms
62,012 KB
testcase_50 AC 43 ms
61,112 KB
testcase_51 AC 780 ms
452,720 KB
testcase_52 AC 706 ms
453,300 KB
testcase_53 AC 703 ms
452,908 KB
testcase_54 AC 706 ms
451,948 KB
testcase_55 AC 702 ms
452,364 KB
testcase_56 AC 43 ms
60,684 KB
testcase_57 AC 415 ms
331,288 KB
testcase_58 AC 161 ms
155,360 KB
testcase_59 AC 39 ms
52,596 KB
testcase_60 AC 42 ms
60,360 KB
testcase_61 AC 42 ms
60,856 KB
testcase_62 AC 324 ms
229,736 KB
testcase_63 AC 397 ms
266,556 KB
testcase_64 AC 586 ms
382,224 KB
testcase_65 AC 206 ms
156,836 KB
testcase_66 AC 43 ms
59,316 KB
testcase_67 AC 38 ms
53,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().strip()
import bisect

def Map():
  return list(map(int,input().split()))

N = int(input())
A = Map()
g = 0
for a in A:
  g ^= a
if g != 0:
  print('No')
  exit()

M = 10000
dp = [0 for j in range((N+1)*M)]
for n in range(N-1):
  a = A[n]
  dp[(n+1)*M + a] = 1
  for j in range(M):
    if dp[n*M+j] == 1:
      dp[(n+1)*M+j] = 1
      dp[(n+1)*M + (a^j)] = 1
if dp[(N-1)*M + 0] == 1:
  print('Yes')
else:
  print('No')
0