結果

問題 No.2672 Subset Xor Sum
ユーザー detteiuudetteiuu
提出日時 2024-05-26 16:18:49
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 601 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 623,488 KB
最終ジャッジ日時 2024-05-26 16:18:59
合計ジャッジ時間 9,628 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
66,316 KB
testcase_01 AC 41 ms
58,472 KB
testcase_02 AC 43 ms
60,716 KB
testcase_03 AC 45 ms
61,428 KB
testcase_04 AC 45 ms
61,012 KB
testcase_05 AC 45 ms
60,924 KB
testcase_06 AC 45 ms
63,180 KB
testcase_07 AC 46 ms
61,280 KB
testcase_08 AC 43 ms
60,120 KB
testcase_09 AC 43 ms
61,412 KB
testcase_10 AC 44 ms
61,024 KB
testcase_11 AC 43 ms
60,988 KB
testcase_12 AC 44 ms
61,428 KB
testcase_13 AC 43 ms
61,712 KB
testcase_14 AC 43 ms
60,388 KB
testcase_15 AC 43 ms
61,592 KB
testcase_16 AC 44 ms
61,832 KB
testcase_17 AC 43 ms
61,348 KB
testcase_18 AC 44 ms
60,812 KB
testcase_19 AC 44 ms
61,220 KB
testcase_20 AC 44 ms
60,644 KB
testcase_21 AC 44 ms
62,180 KB
testcase_22 AC 44 ms
61,960 KB
testcase_23 AC 44 ms
61,616 KB
testcase_24 AC 43 ms
60,156 KB
testcase_25 AC 43 ms
61,828 KB
testcase_26 AC 37 ms
53,276 KB
testcase_27 AC 51 ms
53,404 KB
testcase_28 AC 46 ms
62,952 KB
testcase_29 AC 45 ms
62,772 KB
testcase_30 AC 44 ms
60,176 KB
testcase_31 AC 136 ms
132,220 KB
testcase_32 AC 73 ms
95,928 KB
testcase_33 AC 69 ms
92,548 KB
testcase_34 AC 111 ms
111,556 KB
testcase_35 AC 133 ms
132,360 KB
testcase_36 AC 118 ms
116,520 KB
testcase_37 AC 126 ms
125,248 KB
testcase_38 AC 79 ms
101,248 KB
testcase_39 AC 150 ms
142,652 KB
testcase_40 AC 54 ms
75,336 KB
testcase_41 AC 93 ms
117,016 KB
testcase_42 AC 128 ms
125,604 KB
testcase_43 AC 112 ms
111,252 KB
testcase_44 AC 136 ms
142,184 KB
testcase_45 AC 109 ms
111,224 KB
testcase_46 AC 41 ms
60,096 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()))

xor = 0
for i in range(N):
    xor ^= A[i]

if xor:
    exit(print("No"))

if N == 2:
    if A[0] == 0:
        print("Yes")
    else:
        print("No")
    exit()

S = set()
for i in range(N):
    if A[i] in S:
        exit(print("Yes"))
    S.add(A[i])

L = list(S)
dp = [[False]*(1<<14) for _ in range(len(L))]
dp[0][0] = True
for i in range(len(L)-1):
    for j in range(1<<14):
        if dp[i][j]:
            dp[i+1][j] = True
            if not j ^ L[i]:
                exit(print("Yes"))
            dp[i+1][j^L[i]] = True

print("No")
0