結果

問題 No.2672 Subset Xor Sum
ユーザー moon17moon17
提出日時 2024-10-12 17:35:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,228 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 396,672 KB
最終ジャッジ日時 2024-10-12 17:35:45
合計ジャッジ時間 16,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,800 KB
testcase_01 AC 37 ms
60,800 KB
testcase_02 AC 40 ms
61,952 KB
testcase_03 AC 43 ms
62,592 KB
testcase_04 AC 43 ms
62,336 KB
testcase_05 AC 42 ms
63,232 KB
testcase_06 AC 44 ms
63,616 KB
testcase_07 AC 46 ms
61,696 KB
testcase_08 AC 43 ms
62,080 KB
testcase_09 AC 40 ms
62,080 KB
testcase_10 AC 40 ms
63,232 KB
testcase_11 AC 41 ms
62,336 KB
testcase_12 AC 40 ms
61,824 KB
testcase_13 AC 41 ms
61,696 KB
testcase_14 AC 39 ms
61,952 KB
testcase_15 AC 41 ms
61,824 KB
testcase_16 AC 41 ms
61,824 KB
testcase_17 AC 40 ms
62,080 KB
testcase_18 AC 43 ms
61,824 KB
testcase_19 AC 44 ms
62,336 KB
testcase_20 AC 41 ms
62,208 KB
testcase_21 AC 41 ms
62,208 KB
testcase_22 AC 42 ms
62,720 KB
testcase_23 AC 43 ms
62,592 KB
testcase_24 AC 41 ms
61,824 KB
testcase_25 AC 40 ms
61,824 KB
testcase_26 AC 65 ms
72,320 KB
testcase_27 AC 66 ms
72,448 KB
testcase_28 AC 46 ms
63,744 KB
testcase_29 AC 63 ms
63,744 KB
testcase_30 AC 40 ms
62,080 KB
testcase_31 AC 130 ms
136,524 KB
testcase_32 AC 69 ms
100,096 KB
testcase_33 AC 64 ms
94,848 KB
testcase_34 AC 108 ms
134,784 KB
testcase_35 AC 151 ms
136,260 KB
testcase_36 AC 116 ms
132,956 KB
testcase_37 AC 125 ms
129,768 KB
testcase_38 AC 77 ms
106,624 KB
testcase_39 AC 136 ms
142,964 KB
testcase_40 AC 49 ms
77,312 KB
testcase_41 AC 110 ms
124,928 KB
testcase_42 AC 124 ms
129,604 KB
testcase_43 AC 109 ms
133,248 KB
testcase_44 AC 144 ms
144,052 KB
testcase_45 AC 112 ms
136,984 KB
testcase_46 AC 35 ms
59,392 KB
testcase_47 AC 1,224 ms
396,544 KB
testcase_48 AC 36 ms
59,520 KB
testcase_49 AC 33 ms
59,776 KB
testcase_50 AC 34 ms
59,776 KB
testcase_51 AC 1,228 ms
396,672 KB
testcase_52 AC 1,217 ms
396,672 KB
testcase_53 AC 1,202 ms
396,672 KB
testcase_54 AC 1,197 ms
396,288 KB
testcase_55 AC 1,191 ms
396,660 KB
testcase_56 AC 35 ms
59,520 KB
testcase_57 AC 727 ms
297,472 KB
testcase_58 AC 248 ms
137,088 KB
testcase_59 AC 32 ms
52,480 KB
testcase_60 AC 33 ms
59,136 KB
testcase_61 AC 33 ms
59,008 KB
testcase_62 AC 521 ms
205,804 KB
testcase_63 AC 648 ms
228,636 KB
testcase_64 AC 1,055 ms
338,816 KB
testcase_65 AC 316 ms
137,236 KB
testcase_66 AC 37 ms
59,136 KB
testcase_67 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,*a=map(int,open(0).read().split())
m=1<<13
x=0
for i in a:
  x^=i
if x:
  exit(print('No'))
if n>5001:
  exit(print('Yes'))
dp=[[1<<60]*m for _ in range(n+1)]
dp[1][a[0]]=1
for i in range(2,n+1):
  c=a[i-1]
  for j in range(m):
    dp[i][j]=min(dp[i][j],dp[i-1][j])
    dp[i][j^c]=min(dp[i][j^c],dp[i-1][j]+1)
if dp[n][0]<n:
  print('Yes')
else:
  print('No')
0