結果

問題 No.2672 Subset Xor Sum
ユーザー PNJPNJ
提出日時 2024-03-15 21:33:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 398 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 382,784 KB
最終ジャッジ日時 2024-09-30 00:28:49
合計ジャッジ時間 17,386 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,352 KB
testcase_01 AC 47 ms
59,932 KB
testcase_02 AC 49 ms
61,500 KB
testcase_03 AC 49 ms
62,556 KB
testcase_04 AC 48 ms
61,976 KB
testcase_05 AC 49 ms
61,532 KB
testcase_06 AC 48 ms
62,616 KB
testcase_07 AC 49 ms
61,832 KB
testcase_08 AC 47 ms
60,552 KB
testcase_09 AC 48 ms
61,932 KB
testcase_10 AC 50 ms
61,912 KB
testcase_11 AC 48 ms
60,992 KB
testcase_12 AC 49 ms
60,912 KB
testcase_13 AC 50 ms
61,040 KB
testcase_14 AC 48 ms
60,768 KB
testcase_15 AC 47 ms
60,896 KB
testcase_16 AC 48 ms
60,648 KB
testcase_17 AC 48 ms
60,264 KB
testcase_18 AC 48 ms
61,504 KB
testcase_19 AC 47 ms
60,420 KB
testcase_20 AC 48 ms
61,176 KB
testcase_21 AC 47 ms
60,408 KB
testcase_22 AC 48 ms
61,028 KB
testcase_23 AC 47 ms
60,712 KB
testcase_24 AC 49 ms
61,516 KB
testcase_25 AC 49 ms
61,924 KB
testcase_26 AC 68 ms
70,064 KB
testcase_27 AC 67 ms
70,884 KB
testcase_28 AC 49 ms
61,356 KB
testcase_29 AC 50 ms
61,400 KB
testcase_30 AC 49 ms
62,092 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 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 WA -
testcase_47 AC 746 ms
382,780 KB
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 750 ms
381,912 KB
testcase_52 AC 747 ms
382,164 KB
testcase_53 AC 746 ms
382,784 KB
testcase_54 AC 741 ms
381,128 KB
testcase_55 AC 744 ms
381,292 KB
testcase_56 WA -
testcase_57 AC 423 ms
283,092 KB
testcase_58 AC 146 ms
138,076 KB
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 AC 321 ms
199,204 KB
testcase_63 AC 392 ms
229,608 KB
testcase_64 AC 620 ms
323,920 KB
testcase_65 AC 194 ms
138,864 KB
testcase_66 AC 46 ms
60,324 KB
testcase_67 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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