結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ああいいああいい
提出日時 2021-12-24 15:18:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 5,000 ms
コード長 218 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,856 KB
実行使用メモリ 63,460 KB
最終ジャッジ日時 2024-09-19 13:45:42
合計ジャッジ時間 6,848 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,360 KB
testcase_01 AC 42 ms
58,868 KB
testcase_02 AC 42 ms
59,056 KB
testcase_03 AC 40 ms
60,108 KB
testcase_04 AC 41 ms
58,852 KB
testcase_05 AC 40 ms
59,700 KB
testcase_06 AC 39 ms
59,308 KB
testcase_07 AC 954 ms
62,884 KB
testcase_08 AC 649 ms
62,752 KB
testcase_09 AC 459 ms
63,188 KB
testcase_10 AC 547 ms
62,704 KB
testcase_11 AC 721 ms
62,332 KB
testcase_12 AC 41 ms
59,864 KB
testcase_13 AC 35 ms
57,192 KB
testcase_14 AC 298 ms
62,808 KB
testcase_15 AC 739 ms
63,252 KB
testcase_16 AC 41 ms
60,520 KB
testcase_17 AC 192 ms
62,012 KB
testcase_18 AC 803 ms
63,460 KB
testcase_19 AC 136 ms
61,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [0] * ((1 << 15) + 1)
dp[0] = 1
dp[A[0]] = 1
for i in range(1,N):
    for j in range((1 << 15) + 1):
        if dp[j]:
            dp[j^A[i]] = 1
print(sum(dp))
0