結果

問題 No.2672 Subset Xor Sum
ユーザー i_takui_taku
提出日時 2024-03-15 21:57:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 391 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 297,496 KB
最終ジャッジ日時 2024-09-30 01:05:52
合計ジャッジ時間 7,799 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
67,268 KB
testcase_01 AC 39 ms
59,956 KB
testcase_02 AC 42 ms
62,732 KB
testcase_03 AC 44 ms
62,208 KB
testcase_04 AC 44 ms
62,772 KB
testcase_05 AC 43 ms
61,764 KB
testcase_06 AC 42 ms
61,884 KB
testcase_07 AC 43 ms
61,232 KB
testcase_08 AC 42 ms
61,088 KB
testcase_09 AC 42 ms
60,868 KB
testcase_10 AC 42 ms
61,908 KB
testcase_11 AC 44 ms
61,700 KB
testcase_12 AC 44 ms
60,940 KB
testcase_13 AC 44 ms
62,500 KB
testcase_14 AC 43 ms
61,736 KB
testcase_15 AC 44 ms
62,280 KB
testcase_16 AC 43 ms
60,944 KB
testcase_17 AC 42 ms
61,572 KB
testcase_18 AC 42 ms
61,408 KB
testcase_19 AC 42 ms
61,424 KB
testcase_20 AC 41 ms
61,520 KB
testcase_21 AC 43 ms
62,340 KB
testcase_22 AC 42 ms
61,316 KB
testcase_23 AC 42 ms
61,732 KB
testcase_24 AC 43 ms
62,220 KB
testcase_25 AC 43 ms
61,892 KB
testcase_26 AC 93 ms
79,472 KB
testcase_27 AC 95 ms
79,300 KB
testcase_28 AC 44 ms
62,168 KB
testcase_29 AC 42 ms
61,928 KB
testcase_30 AC 43 ms
62,444 KB
testcase_31 AC 135 ms
132,012 KB
testcase_32 AC 75 ms
95,596 KB
testcase_33 AC 72 ms
91,740 KB
testcase_34 AC 114 ms
111,272 KB
testcase_35 AC 136 ms
132,264 KB
testcase_36 AC 123 ms
116,880 KB
testcase_37 AC 126 ms
125,216 KB
testcase_38 AC 80 ms
101,588 KB
testcase_39 AC 143 ms
142,340 KB
testcase_40 AC 56 ms
75,488 KB
testcase_41 AC 94 ms
116,688 KB
testcase_42 AC 131 ms
125,156 KB
testcase_43 AC 114 ms
111,088 KB
testcase_44 AC 144 ms
142,220 KB
testcase_45 AC 113 ms
111,188 KB
testcase_46 AC 43 ms
60,728 KB
testcase_47 TLE -
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()))

now = 0
for a in A:
    now ^= a
if now != 0:
    print('No')
    exit()

if N > 5000:
    print('Yes')
    exit()

dp = [0] * 10010
dp[0] = 1
for a in A:
    ndp = dp[:]
    for i in range(9000):
        if not dp[i]:
            continue
        ndp[i ^ a] += dp[i]
    dp = ndp[:]
if dp[0] >= 3:
    print('Yes')
else:
    print('No')
0