結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-21 06:50:26
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 299 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 717,568 KB
最終ジャッジ日時 2024-10-13 20:48:59
合計ジャッジ時間 14,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
59,904 KB
testcase_01 AC 53 ms
61,312 KB
testcase_02 AC 53 ms
61,696 KB
testcase_03 AC 53 ms
61,824 KB
testcase_04 AC 49 ms
60,160 KB
testcase_05 AC 53 ms
62,208 KB
testcase_06 AC 50 ms
60,928 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 1,273 ms
466,604 KB
testcase_10 MLE -
testcase_11 MLE -
testcase_12 RE -
testcase_13 AC 46 ms
58,752 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 AC 53 ms
61,568 KB
testcase_17 AC 487 ms
206,112 KB
testcase_18 MLE -
testcase_19 AC 272 ms
138,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

N = 2**14+1
dp = [[0]*N for i in range(n+1)]
dp[0][0] = 1
for i, a in enumerate(A):
    for j in range(N):
        dp[i+1][j] = dp[i][j]
    for j in range(N):
        if dp[i][j] == 1:
            dp[i+1][j^a] = 1
#print(dp)
print(sum(dp[-1]))
0