結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tnoda_tnoda_
提出日時 2015-08-18 18:41:09
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 1,463 ms / 5,000 ms
コード長 203 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 76,920 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-06-29 02:38:13
合計ジャッジ時間 10,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
77,056 KB
testcase_01 AC 77 ms
76,672 KB
testcase_02 AC 80 ms
77,312 KB
testcase_03 AC 79 ms
77,312 KB
testcase_04 AC 76 ms
76,928 KB
testcase_05 AC 81 ms
76,708 KB
testcase_06 AC 77 ms
77,056 KB
testcase_07 AC 1,463 ms
78,848 KB
testcase_08 AC 964 ms
78,460 KB
testcase_09 AC 544 ms
78,336 KB
testcase_10 AC 641 ms
78,336 KB
testcase_11 AC 1,037 ms
78,376 KB
testcase_12 AC 81 ms
77,084 KB
testcase_13 AC 76 ms
76,732 KB
testcase_14 AC 392 ms
78,464 KB
testcase_15 AC 1,062 ms
78,720 KB
testcase_16 AC 77 ms
77,184 KB
testcase_17 AC 298 ms
78,464 KB
testcase_18 AC 1,213 ms
78,112 KB
testcase_19 AC 198 ms
78,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
A = map(int, raw_input().strip().split())

dp = [False] * (1 << 15)
dp[0] = True
for a in A:
    for i in xrange(len(dp)):
        if dp[i]:
            dp[a ^ i] = True
print(dp.count(True))
0