結果

問題 No.2672 Subset Xor Sum
ユーザー rlangevinrlangevin
提出日時 2024-03-15 21:51:15
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 468 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 852,480 KB
最終ジャッジ日時 2024-09-30 00:52:34
合計ジャッジ時間 7,820 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,904 KB
testcase_01 AC 47 ms
59,776 KB
testcase_02 AC 46 ms
60,288 KB
testcase_03 AC 46 ms
60,416 KB
testcase_04 AC 44 ms
60,416 KB
testcase_05 AC 45 ms
60,288 KB
testcase_06 AC 47 ms
60,416 KB
testcase_07 AC 47 ms
60,668 KB
testcase_08 AC 45 ms
60,416 KB
testcase_09 AC 46 ms
60,160 KB
testcase_10 AC 47 ms
60,288 KB
testcase_11 AC 47 ms
60,288 KB
testcase_12 AC 48 ms
60,032 KB
testcase_13 AC 47 ms
60,160 KB
testcase_14 AC 48 ms
60,032 KB
testcase_15 AC 46 ms
60,160 KB
testcase_16 AC 46 ms
60,288 KB
testcase_17 AC 46 ms
60,288 KB
testcase_18 AC 50 ms
60,152 KB
testcase_19 AC 47 ms
60,416 KB
testcase_20 AC 45 ms
60,288 KB
testcase_21 AC 47 ms
60,416 KB
testcase_22 AC 45 ms
60,288 KB
testcase_23 AC 46 ms
60,544 KB
testcase_24 AC 45 ms
60,416 KB
testcase_25 AC 46 ms
60,416 KB
testcase_26 AC 186 ms
118,624 KB
testcase_27 AC 182 ms
118,388 KB
testcase_28 AC 47 ms
60,412 KB
testcase_29 AC 47 ms
60,288 KB
testcase_30 AC 45 ms
60,672 KB
testcase_31 AC 141 ms
131,916 KB
testcase_32 AC 77 ms
95,360 KB
testcase_33 AC 71 ms
90,624 KB
testcase_34 AC 119 ms
111,324 KB
testcase_35 AC 145 ms
132,068 KB
testcase_36 AC 126 ms
116,208 KB
testcase_37 AC 132 ms
125,132 KB
testcase_38 AC 81 ms
100,608 KB
testcase_39 AC 144 ms
142,068 KB
testcase_40 AC 56 ms
74,872 KB
testcase_41 AC 96 ms
116,868 KB
testcase_42 AC 135 ms
125,180 KB
testcase_43 AC 119 ms
111,212 KB
testcase_44 AC 143 ms
142,084 KB
testcase_45 AC 115 ms
111,168 KB
testcase_46 AC 42 ms
59,648 KB
testcase_47 MLE -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
ans = 0
for a in A:
    ans ^= a
    
if ans:
    print("No")
    exit()

if N >= 5000:
    print("Yes")
    exit()
    
M = 8192
dp = [[0] * M for _ in range(N + 1)]
dp[0][0] = 1
for i in range(N):
    for v in range(M):
        dp[i + 1][v] += dp[i][v]
        dp[i + 1][v^A[i]] += dp[i][v]
    for v in range(N + 1):
        dp[i + 1][v] = min(dp[i + 1][v], 3)
    
print("Yes") if dp[-1][0] > 2 else print("No")
0