結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー brthyyjpbrthyyjp
提出日時 2020-08-21 06:54:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,772 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 260,464 KB
最終ジャッジ日時 2024-10-13 20:54:49
合計ジャッジ時間 13,206 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,092 KB
testcase_01 AC 49 ms
63,332 KB
testcase_02 AC 51 ms
69,020 KB
testcase_03 AC 48 ms
67,480 KB
testcase_04 AC 48 ms
61,944 KB
testcase_05 AC 55 ms
67,436 KB
testcase_06 AC 47 ms
65,192 KB
testcase_07 AC 1,772 ms
260,304 KB
testcase_08 AC 1,381 ms
260,192 KB
testcase_09 AC 996 ms
260,056 KB
testcase_10 AC 1,167 ms
260,352 KB
testcase_11 AC 1,495 ms
258,604 KB
testcase_12 AC 51 ms
70,124 KB
testcase_13 AC 41 ms
60,304 KB
testcase_14 AC 1,003 ms
260,292 KB
testcase_15 AC 1,544 ms
259,132 KB
testcase_16 AC 49 ms
66,568 KB
testcase_17 AC 454 ms
260,376 KB
testcase_18 AC 1,585 ms
260,148 KB
testcase_19 AC 307 ms
260,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

N = 2**15+5
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