結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ohanaohana
提出日時 2023-11-24 10:18:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,578 ms / 5,000 ms
コード長 217 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 62,208 KB
最終ジャッジ日時 2024-09-26 08:33:20
合計ジャッジ時間 9,955 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,112 KB
testcase_01 AC 45 ms
57,984 KB
testcase_02 AC 46 ms
58,624 KB
testcase_03 AC 49 ms
59,008 KB
testcase_04 AC 46 ms
58,368 KB
testcase_05 AC 47 ms
58,624 KB
testcase_06 AC 45 ms
58,368 KB
testcase_07 AC 1,578 ms
61,952 KB
testcase_08 AC 1,016 ms
61,952 KB
testcase_09 AC 706 ms
61,952 KB
testcase_10 AC 841 ms
61,696 KB
testcase_11 AC 1,102 ms
61,952 KB
testcase_12 AC 49 ms
59,136 KB
testcase_13 AC 45 ms
57,856 KB
testcase_14 AC 364 ms
61,952 KB
testcase_15 AC 1,139 ms
62,208 KB
testcase_16 AC 47 ms
58,752 KB
testcase_17 AC 289 ms
61,056 KB
testcase_18 AC 1,312 ms
61,824 KB
testcase_19 AC 156 ms
60,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [False] * (2**15 + 10)
dp[0] = True
for i in range(N):
    for j in range(2**15):
        if dp[j]:
            dp[A[i] ^ j] = True

ans = sum(dp)
print(ans)
0