結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yakeshibayakeshiba
提出日時 2021-03-11 21:53:38
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 196 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 71,016 KB
最終ジャッジ日時 2024-10-13 09:02:38
合計ジャッジ時間 4,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,496 KB
testcase_01 AC 42 ms
57,984 KB
testcase_02 AC 43 ms
58,496 KB
testcase_03 AC 43 ms
58,716 KB
testcase_04 AC 43 ms
58,496 KB
testcase_05 AC 43 ms
58,652 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 RE -
testcase_08 AC 437 ms
61,952 KB
testcase_09 AC 312 ms
61,824 KB
testcase_10 AC 365 ms
62,208 KB
testcase_11 AC 466 ms
61,696 KB
testcase_12 RE -
testcase_13 AC 41 ms
57,984 KB
testcase_14 AC 265 ms
61,184 KB
testcase_15 AC 481 ms
62,080 KB
testcase_16 AC 43 ms
58,240 KB
testcase_17 AC 143 ms
60,672 KB
testcase_18 RE -
testcase_19 AC 96 ms
60,092 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0]*(2**14+100)
dp[0] = 1
for a in A:
    for i in range(2**14+100):
        if dp[i]:
            dp[i^a] = 1
            
print(sum(dp))
0