結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:06:46
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,655 ms / 5,000 ms
コード長 266 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 76,544 KB
実行使用メモリ 78,628 KB
最終ジャッジ日時 2024-06-29 01:57:46
合計ジャッジ時間 12,198 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,544 KB
testcase_01 AC 77 ms
77,100 KB
testcase_02 AC 77 ms
77,696 KB
testcase_03 AC 76 ms
77,824 KB
testcase_04 AC 72 ms
76,672 KB
testcase_05 AC 77 ms
77,696 KB
testcase_06 AC 74 ms
77,184 KB
testcase_07 AC 1,655 ms
78,592 KB
testcase_08 AC 1,122 ms
78,464 KB
testcase_09 AC 675 ms
78,208 KB
testcase_10 AC 960 ms
78,352 KB
testcase_11 AC 1,236 ms
78,208 KB
testcase_12 AC 78 ms
77,944 KB
testcase_13 AC 72 ms
77,056 KB
testcase_14 AC 575 ms
78,252 KB
testcase_15 AC 1,248 ms
78,628 KB
testcase_16 AC 74 ms
77,952 KB
testcase_17 AC 337 ms
78,592 KB
testcase_18 AC 1,417 ms
78,492 KB
testcase_19 AC 208 ms
77,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
isOk=[False for i in range((1<<15)+1)]
isOk[0]=True
for a in A:
    for i in range((1<<15)+1):
        if isOk[i]:
            isOk[i^a]=True
ans=0
for i in range((1<<15)+1):
    if isOk[i]:
        ans+=1
print ans
0