結果

問題 No.2672 Subset Xor Sum
ユーザー i_takui_taku
提出日時 2024-03-15 21:58:28
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 347 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,876 KB
実行使用メモリ 292,292 KB
最終ジャッジ日時 2024-09-30 01:07:28
合計ジャッジ時間 8,106 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
67,324 KB
testcase_01 AC 42 ms
58,768 KB
testcase_02 AC 43 ms
61,400 KB
testcase_03 AC 42 ms
60,248 KB
testcase_04 AC 43 ms
60,528 KB
testcase_05 AC 43 ms
60,692 KB
testcase_06 AC 43 ms
60,560 KB
testcase_07 AC 42 ms
60,488 KB
testcase_08 AC 43 ms
60,904 KB
testcase_09 AC 44 ms
61,536 KB
testcase_10 AC 47 ms
62,008 KB
testcase_11 AC 44 ms
60,920 KB
testcase_12 AC 44 ms
60,520 KB
testcase_13 AC 43 ms
60,524 KB
testcase_14 AC 43 ms
60,424 KB
testcase_15 AC 42 ms
61,040 KB
testcase_16 AC 42 ms
61,036 KB
testcase_17 AC 43 ms
60,656 KB
testcase_18 AC 43 ms
59,932 KB
testcase_19 AC 42 ms
60,396 KB
testcase_20 AC 44 ms
60,236 KB
testcase_21 AC 43 ms
60,176 KB
testcase_22 AC 44 ms
62,024 KB
testcase_23 AC 44 ms
60,436 KB
testcase_24 AC 43 ms
61,088 KB
testcase_25 AC 44 ms
60,052 KB
testcase_26 AC 94 ms
78,988 KB
testcase_27 AC 95 ms
79,112 KB
testcase_28 AC 42 ms
61,260 KB
testcase_29 AC 44 ms
62,048 KB
testcase_30 AC 43 ms
60,488 KB
testcase_31 AC 134 ms
132,260 KB
testcase_32 AC 76 ms
95,516 KB
testcase_33 AC 71 ms
91,392 KB
testcase_34 AC 113 ms
111,304 KB
testcase_35 AC 133 ms
132,076 KB
testcase_36 AC 122 ms
116,396 KB
testcase_37 AC 129 ms
125,268 KB
testcase_38 AC 80 ms
101,092 KB
testcase_39 AC 141 ms
142,316 KB
testcase_40 AC 55 ms
74,912 KB
testcase_41 AC 95 ms
116,500 KB
testcase_42 AC 130 ms
125,076 KB
testcase_43 AC 114 ms
111,076 KB
testcase_44 AC 141 ms
142,320 KB
testcase_45 AC 112 ms
111,000 KB
testcase_46 AC 42 ms
61,008 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] * 8192
dp[0] = 1
for a in A:
    ndp = dp[:]
    for i in range(8192):
        ndp[i ^ a] += dp[i]
    dp = ndp[:]
if dp[0] >= 3:
    print('Yes')
else:
    print('No')
0