結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ああいいああいい
提出日時 2022-03-17 23:48:32
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 219 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 79,800 KB
最終ジャッジ日時 2024-10-01 22:39:49
合計ジャッジ時間 7,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,440 KB
testcase_01 AC 44 ms
59,404 KB
testcase_02 AC 45 ms
60,556 KB
testcase_03 AC 45 ms
61,160 KB
testcase_04 AC 43 ms
60,256 KB
testcase_05 AC 45 ms
60,960 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 RE -
testcase_08 AC 892 ms
79,208 KB
testcase_09 AC 627 ms
78,256 KB
testcase_10 AC 748 ms
79,124 KB
testcase_11 AC 964 ms
79,732 KB
testcase_12 RE -
testcase_13 AC 40 ms
59,408 KB
testcase_14 AC 384 ms
79,800 KB
testcase_15 AC 998 ms
79,796 KB
testcase_16 AC 44 ms
62,044 KB
testcase_17 AC 261 ms
76,872 KB
testcase_18 RE -
testcase_19 AC 152 ms
76,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C = 1 << 14
dp = [0] * (C + 1)
dp[0] = 1
for a in A:
    nx = dp.copy()
    for i in range(C+1):
        if dp[i]:
            nx[i^a] = 1
    dp = nx
print(sum(dp))
0