結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ああいいああいい
提出日時 2022-03-17 23:58:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 736 ms / 5,000 ms
コード長 193 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 63,192 KB
最終ジャッジ日時 2024-10-01 22:51:12
合計ジャッジ時間 6,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,744 KB
testcase_01 AC 42 ms
59,172 KB
testcase_02 AC 43 ms
59,784 KB
testcase_03 AC 45 ms
58,548 KB
testcase_04 AC 43 ms
58,328 KB
testcase_05 AC 44 ms
59,420 KB
testcase_06 AC 42 ms
59,328 KB
testcase_07 AC 736 ms
63,192 KB
testcase_08 AC 556 ms
62,468 KB
testcase_09 AC 394 ms
62,608 KB
testcase_10 AC 464 ms
62,732 KB
testcase_11 AC 597 ms
62,664 KB
testcase_12 AC 47 ms
59,916 KB
testcase_13 AC 41 ms
58,548 KB
testcase_14 AC 475 ms
61,524 KB
testcase_15 AC 620 ms
63,136 KB
testcase_16 AC 46 ms
59,676 KB
testcase_17 AC 176 ms
62,144 KB
testcase_18 AC 638 ms
62,392 KB
testcase_19 AC 121 ms
61,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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