結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-21 06:52:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 273 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 94,676 KB
最終ジャッジ日時 2024-10-13 20:51:02
合計ジャッジ時間 7,795 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,368 KB
testcase_01 AC 47 ms
62,516 KB
testcase_02 AC 48 ms
64,388 KB
testcase_03 AC 48 ms
63,108 KB
testcase_04 AC 48 ms
62,372 KB
testcase_05 AC 50 ms
64,308 KB
testcase_06 AC 47 ms
61,556 KB
testcase_07 RE -
testcase_08 AC 921 ms
92,484 KB
testcase_09 AC 648 ms
87,312 KB
testcase_10 AC 775 ms
89,868 KB
testcase_11 AC 999 ms
93,784 KB
testcase_12 RE -
testcase_13 AC 45 ms
59,336 KB
testcase_14 AC 386 ms
94,676 KB
testcase_15 AC 1,032 ms
94,508 KB
testcase_16 AC 49 ms
63,364 KB
testcase_17 AC 273 ms
80,308 KB
testcase_18 RE -
testcase_19 AC 168 ms
78,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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