結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 08:57:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,531 ms / 5,000 ms
コード長 259 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-11-23 14:22:28
合計ジャッジ時間 7,223 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
57,216 KB
testcase_01 AC 45 ms
57,088 KB
testcase_02 AC 56 ms
61,440 KB
testcase_03 AC 51 ms
60,032 KB
testcase_04 AC 45 ms
57,344 KB
testcase_05 AC 56 ms
61,440 KB
testcase_06 AC 45 ms
56,960 KB
testcase_07 AC 1,531 ms
66,048 KB
testcase_08 AC 304 ms
65,024 KB
testcase_09 AC 227 ms
64,000 KB
testcase_10 AC 665 ms
64,000 KB
testcase_11 AC 850 ms
64,128 KB
testcase_12 AC 60 ms
62,848 KB
testcase_13 AC 44 ms
56,960 KB
testcase_14 AC 48 ms
60,416 KB
testcase_15 AC 329 ms
64,512 KB
testcase_16 AC 51 ms
59,904 KB
testcase_17 AC 240 ms
63,872 KB
testcase_18 AC 1,480 ms
65,920 KB
testcase_19 AC 144 ms
61,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
m = 15
tf = [False] * (1 << m)
tf[0] = True
stack = [0]
while stack:
    x = stack.pop()
    for a in A:
        if not tf[a ^ x]:
            tf[a ^ x] = True
            stack.append(a ^ x)
print(sum(tf))
0