結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 👑 rin204rin204
提出日時 2022-01-20 08:56:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 259 bytes
コンパイル時間 377 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 68,096 KB
最終ジャッジ日時 2024-05-02 20:14:52
合計ジャッジ時間 4,631 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,960 KB
testcase_01 AC 45 ms
56,832 KB
testcase_02 AC 55 ms
61,312 KB
testcase_03 AC 51 ms
59,776 KB
testcase_04 AC 44 ms
57,216 KB
testcase_05 AC 55 ms
61,056 KB
testcase_06 AC 43 ms
57,088 KB
testcase_07 RE -
testcase_08 AC 305 ms
64,256 KB
testcase_09 AC 225 ms
64,256 KB
testcase_10 AC 677 ms
64,000 KB
testcase_11 AC 861 ms
64,640 KB
testcase_12 RE -
testcase_13 AC 43 ms
57,088 KB
testcase_14 AC 48 ms
60,544 KB
testcase_15 AC 335 ms
64,256 KB
testcase_16 AC 50 ms
59,776 KB
testcase_17 AC 250 ms
62,976 KB
testcase_18 RE -
testcase_19 AC 143 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
m = 14
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