結果

問題 No.2672 Subset Xor Sum
ユーザー PNJPNJ
提出日時 2024-03-15 21:42:57
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 454 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 382,252 KB
最終ジャッジ日時 2024-09-30 00:37:06
合計ジャッジ時間 11,396 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,388 KB
testcase_01 AC 42 ms
59,652 KB
testcase_02 AC 45 ms
60,944 KB
testcase_03 AC 46 ms
61,868 KB
testcase_04 AC 45 ms
61,768 KB
testcase_05 AC 46 ms
61,668 KB
testcase_06 AC 45 ms
61,284 KB
testcase_07 AC 44 ms
61,536 KB
testcase_08 AC 44 ms
60,820 KB
testcase_09 AC 43 ms
61,012 KB
testcase_10 AC 44 ms
61,748 KB
testcase_11 AC 45 ms
60,912 KB
testcase_12 AC 43 ms
60,964 KB
testcase_13 AC 45 ms
60,744 KB
testcase_14 AC 44 ms
61,336 KB
testcase_15 AC 45 ms
61,876 KB
testcase_16 AC 44 ms
61,436 KB
testcase_17 AC 44 ms
61,088 KB
testcase_18 AC 44 ms
60,628 KB
testcase_19 AC 46 ms
60,132 KB
testcase_20 AC 45 ms
61,400 KB
testcase_21 AC 44 ms
60,284 KB
testcase_22 AC 45 ms
60,928 KB
testcase_23 AC 45 ms
60,412 KB
testcase_24 AC 46 ms
60,760 KB
testcase_25 AC 45 ms
60,076 KB
testcase_26 AC 63 ms
71,652 KB
testcase_27 AC 61 ms
70,528 KB
testcase_28 AC 47 ms
61,296 KB
testcase_29 AC 46 ms
62,536 KB
testcase_30 AC 44 ms
62,276 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 90 ms
117,076 KB
testcase_42 AC 127 ms
125,592 KB
testcase_43 AC 112 ms
111,108 KB
testcase_44 AC 137 ms
142,016 KB
testcase_45 AC 112 ms
111,196 KB
testcase_46 AC 42 ms
60,160 KB
testcase_47 AC 631 ms
382,096 KB
testcase_48 AC 42 ms
60,708 KB
testcase_49 AC 41 ms
61,028 KB
testcase_50 AC 43 ms
60,332 KB
testcase_51 AC 636 ms
381,596 KB
testcase_52 AC 627 ms
382,252 KB
testcase_53 AC 626 ms
381,296 KB
testcase_54 AC 638 ms
382,096 KB
testcase_55 AC 631 ms
381,452 KB
testcase_56 AC 42 ms
61,044 KB
testcase_57 AC 363 ms
282,188 KB
testcase_58 AC 142 ms
138,444 KB
testcase_59 AC 38 ms
53,224 KB
testcase_60 AC 43 ms
60,736 KB
testcase_61 AC 42 ms
59,236 KB
testcase_62 AC 297 ms
199,260 KB
testcase_63 AC 352 ms
230,412 KB
testcase_64 AC 527 ms
324,340 KB
testcase_65 AC 188 ms
140,180 KB
testcase_66 AC 41 ms
58,936 KB
testcase_67 AC 37 ms
53,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 = 1 << 13
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