結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,052 KB
testcase_01 AC 49 ms
58,368 KB
testcase_02 AC 44 ms
58,752 KB
testcase_03 AC 43 ms
58,368 KB
testcase_04 AC 42 ms
58,368 KB
testcase_05 AC 43 ms
58,240 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 RE -
testcase_08 AC 432 ms
61,824 KB
testcase_09 AC 310 ms
61,312 KB
testcase_10 AC 364 ms
62,208 KB
testcase_11 AC 465 ms
61,952 KB
testcase_12 RE -
testcase_13 AC 42 ms
57,216 KB
testcase_14 AC 263 ms
61,696 KB
testcase_15 AC 480 ms
61,696 KB
testcase_16 AC 44 ms
58,368 KB
testcase_17 AC 142 ms
60,544 KB
testcase_18 RE -
testcase_19 AC 95 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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