結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー lloyzlloyz
提出日時 2023-05-20 11:17:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,984 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 208,300 KB
最終ジャッジ日時 2024-06-01 06:09:34
合計ジャッジ時間 15,588 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,944 KB
testcase_01 AC 44 ms
53,420 KB
testcase_02 AC 44 ms
59,768 KB
testcase_03 AC 44 ms
59,508 KB
testcase_04 AC 42 ms
53,484 KB
testcase_05 AC 47 ms
62,568 KB
testcase_06 AC 41 ms
52,540 KB
testcase_07 AC 2,984 ms
208,300 KB
testcase_08 AC 1,676 ms
144,940 KB
testcase_09 AC 1,148 ms
138,724 KB
testcase_10 AC 1,370 ms
141,024 KB
testcase_11 AC 1,772 ms
146,444 KB
testcase_12 AC 48 ms
63,780 KB
testcase_13 AC 39 ms
53,000 KB
testcase_14 AC 47 ms
63,332 KB
testcase_15 AC 1,840 ms
147,212 KB
testcase_16 AC 44 ms
59,164 KB
testcase_17 AC 478 ms
129,668 KB
testcase_18 AC 2,378 ms
201,980 KB
testcase_19 AC 274 ms
126,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = set([0])
for i in range(n):
    a = A[i]
    ans_c = ans.copy()
    for ele in ans_c:
        ans.add(ele ^ a)
print(len(ans))
0