結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:04:23
言語 PyPy2
(7.3.15)
結果
RE  
実行時間 -
コード長 254 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 76,800 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-07-05 21:26:21
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
76,672 KB
testcase_01 AC 77 ms
76,544 KB
testcase_02 AC 101 ms
77,568 KB
testcase_03 AC 85 ms
77,312 KB
testcase_04 AC 80 ms
77,056 KB
testcase_05 AC 79 ms
76,800 KB
testcase_06 AC 78 ms
76,672 KB
testcase_07 RE -
testcase_08 AC 726 ms
78,208 KB
testcase_09 AC 525 ms
78,592 KB
testcase_10 AC 616 ms
78,464 KB
testcase_11 AC 808 ms
78,464 KB
testcase_12 RE -
testcase_13 AC 78 ms
77,056 KB
testcase_14 AC 325 ms
78,080 KB
testcase_15 AC 807 ms
78,336 KB
testcase_16 AC 84 ms
77,312 KB
testcase_17 AC 251 ms
78,464 KB
testcase_18 RE -
testcase_19 AC 172 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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