結果

問題 No.2672 Subset Xor Sum
ユーザー moon17moon17
提出日時 2024-10-12 17:15:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 379 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 331,644 KB
最終ジャッジ日時 2024-10-12 17:15:42
合計ジャッジ時間 10,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 40 ms
51,840 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 40 ms
52,096 KB
testcase_14 AC 38 ms
51,712 KB
testcase_15 AC 40 ms
51,968 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 38 ms
52,096 KB
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 37 ms
52,352 KB
testcase_20 AC 38 ms
52,224 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 38 ms
52,200 KB
testcase_23 AC 38 ms
52,352 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 38 ms
51,712 KB
testcase_26 AC 45 ms
60,288 KB
testcase_27 AC 44 ms
60,416 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
51,712 KB
testcase_31 AC 696 ms
308,800 KB
testcase_32 AC 287 ms
177,408 KB
testcase_33 AC 244 ms
156,756 KB
testcase_34 AC 496 ms
239,880 KB
testcase_35 AC 664 ms
309,932 KB
testcase_36 AC 550 ms
265,788 KB
testcase_37 AC 598 ms
296,916 KB
testcase_38 AC 330 ms
183,168 KB
testcase_39 AC 741 ms
331,644 KB
testcase_40 AC 169 ms
138,728 KB
testcase_41 AC 105 ms
124,524 KB
testcase_42 AC 160 ms
129,444 KB
testcase_43 AC 132 ms
132,864 KB
testcase_44 AC 166 ms
143,624 KB
testcase_45 AC 129 ms
136,768 KB
testcase_46 AC 43 ms
59,648 KB
testcase_47 AC 61 ms
70,400 KB
testcase_48 AC 42 ms
59,520 KB
testcase_49 AC 43 ms
59,776 KB
testcase_50 AC 42 ms
59,520 KB
testcase_51 AC 62 ms
71,936 KB
testcase_52 AC 61 ms
71,680 KB
testcase_53 AC 61 ms
71,552 KB
testcase_54 AC 61 ms
71,936 KB
testcase_55 AC 64 ms
72,448 KB
testcase_56 AC 47 ms
59,904 KB
testcase_57 AC 58 ms
69,120 KB
testcase_58 AC 57 ms
66,304 KB
testcase_59 AC 38 ms
52,608 KB
testcase_60 AC 41 ms
58,880 KB
testcase_61 AC 42 ms
58,964 KB
testcase_62 AC 57 ms
67,456 KB
testcase_63 AC 59 ms
68,992 KB
testcase_64 AC 62 ms
70,912 KB
testcase_65 AC 53 ms
64,512 KB
testcase_66 AC 37 ms
51,840 KB
testcase_67 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
m=13
x=0
for i in a:
  x^=i
if x:
  exit(print('No'))
d=[[]for _ in range(m)]
for i in range(1,n):
  for j in range(m):
    if a[i]>>j&1:
      d[j]+=i,
q=[(a[0],1)]
while q:
  p,j=q.pop()
  if p==0 and j<n:
    exit(print('Yes'))
  for i in range(m):
    if p>>i&1:
      while d[i]:
        v=d[i].pop()
        q+=(p^a[v],j+1),
print('No')
0