結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー lloyzlloyz
提出日時 2023-05-20 11:17:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,185 ms / 5,000 ms
コード長 187 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 207,792 KB
最終ジャッジ日時 2024-12-21 09:47:16
合計ジャッジ時間 17,104 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,584 KB
testcase_01 AC 45 ms
51,200 KB
testcase_02 AC 52 ms
58,880 KB
testcase_03 AC 52 ms
57,472 KB
testcase_04 AC 43 ms
51,584 KB
testcase_05 AC 56 ms
60,672 KB
testcase_06 AC 46 ms
51,584 KB
testcase_07 AC 3,185 ms
207,792 KB
testcase_08 AC 1,759 ms
145,152 KB
testcase_09 AC 1,229 ms
138,624 KB
testcase_10 AC 1,460 ms
140,800 KB
testcase_11 AC 1,912 ms
146,176 KB
testcase_12 AC 53 ms
63,360 KB
testcase_13 AC 43 ms
51,456 KB
testcase_14 AC 52 ms
61,568 KB
testcase_15 AC 1,966 ms
147,456 KB
testcase_16 AC 50 ms
57,856 KB
testcase_17 AC 511 ms
129,792 KB
testcase_18 AC 2,551 ms
201,216 KB
testcase_19 AC 288 ms
126,720 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