結果

問題 No.2672 Subset Xor Sum
ユーザー NPNP
提出日時 2024-03-15 21:54:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 159,496 KB
最終ジャッジ日時 2024-09-30 00:58:13
合計ジャッジ時間 6,085 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,756 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
53,800 KB
testcase_06 AC 32 ms
53,356 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 32 ms
53,384 KB
testcase_11 AC 31 ms
52,440 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 33 ms
52,204 KB
testcase_23 AC 32 ms
53,196 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 32 ms
52,616 KB
testcase_27 AC 32 ms
52,396 KB
testcase_28 AC 32 ms
53,540 KB
testcase_29 AC 32 ms
53,056 KB
testcase_30 WA -
testcase_31 AC 169 ms
148,384 KB
testcase_32 AC 84 ms
105,044 KB
testcase_33 AC 82 ms
102,868 KB
testcase_34 AC 134 ms
126,576 KB
testcase_35 AC 167 ms
148,248 KB
testcase_36 AC 154 ms
132,200 KB
testcase_37 AC 159 ms
141,112 KB
testcase_38 AC 107 ms
106,864 KB
testcase_39 AC 190 ms
159,496 KB
testcase_40 AC 69 ms
91,640 KB
testcase_41 AC 87 ms
118,340 KB
testcase_42 AC 115 ms
124,800 KB
testcase_43 AC 113 ms
110,920 KB
testcase_44 AC 135 ms
142,152 KB
testcase_45 AC 101 ms
111,304 KB
testcase_46 AC 36 ms
60,740 KB
testcase_47 AC 42 ms
63,896 KB
testcase_48 AC 36 ms
59,704 KB
testcase_49 AC 37 ms
59,408 KB
testcase_50 AC 37 ms
60,484 KB
testcase_51 AC 42 ms
63,548 KB
testcase_52 AC 43 ms
64,468 KB
testcase_53 AC 42 ms
63,824 KB
testcase_54 AC 43 ms
63,604 KB
testcase_55 AC 43 ms
64,352 KB
testcase_56 AC 41 ms
59,928 KB
testcase_57 AC 46 ms
63,728 KB
testcase_58 AC 42 ms
62,032 KB
testcase_59 AC 36 ms
52,772 KB
testcase_60 AC 42 ms
59,904 KB
testcase_61 AC 41 ms
59,492 KB
testcase_62 AC 47 ms
63,044 KB
testcase_63 AC 46 ms
63,216 KB
testcase_64 AC 46 ms
63,360 KB
testcase_65 AC 46 ms
63,304 KB
testcase_66 WA -
testcase_67 AC 34 ms
52,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input().strip())
    A = list(map(int, input().strip().split()))
    
    xor_all = 0
    for a in A:
        xor_all ^= a

    if xor_all != 0:
        print('No')
        return

    xor_cum = [0]*(N+1)
    for i in range(N):
        xor_cum[i+1] = xor_cum[i] ^ A[i]

    dp = [[0]*(xor_all+1) for _ in range(N+1)]
    dp[0][0] = 1

    for i in range(N):
        for j in range(xor_all+1):
            if dp[i][j]:
                dp[i+1][j] = 1
                if j^xor_cum[i+1] <= xor_all:
                    dp[i+1][j^xor_cum[i+1]] = 1

    if dp[N][0]:
        print('Yes')
    else:
        print('No')

solve()
0