結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー yansi819yansi819
提出日時 2024-05-24 11:25:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,753 ms / 5,000 ms
コード長 158 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 259,780 KB
最終ジャッジ日時 2024-05-24 11:25:33
合計ジャッジ時間 19,606 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,852 KB
testcase_01 AC 38 ms
53,152 KB
testcase_02 AC 43 ms
61,008 KB
testcase_03 AC 41 ms
58,948 KB
testcase_04 AC 38 ms
53,576 KB
testcase_05 AC 43 ms
63,620 KB
testcase_06 AC 37 ms
52,900 KB
testcase_07 AC 3,753 ms
259,780 KB
testcase_08 AC 2,154 ms
194,452 KB
testcase_09 AC 1,490 ms
171,408 KB
testcase_10 AC 1,757 ms
181,220 KB
testcase_11 AC 2,327 ms
199,608 KB
testcase_12 AC 47 ms
66,196 KB
testcase_13 AC 38 ms
52,328 KB
testcase_14 AC 47 ms
65,108 KB
testcase_15 AC 2,402 ms
202,436 KB
testcase_16 AC 40 ms
58,980 KB
testcase_17 AC 605 ms
140,676 KB
testcase_18 AC 2,999 ms
259,136 KB
testcase_19 AC 314 ms
131,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
X = set([0])
for a in A:
    Y = set(X)
    for x in X:
        Y.add(x ^ a)
    X = set(Y)
print(len(X))
0