結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー H3PO4H3PO4
提出日時 2020-05-11 11:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,957 ms / 5,000 ms
コード長 165 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 207,116 KB
最終ジャッジ日時 2024-07-18 06:53:46
合計ジャッジ時間 15,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 45 ms
59,520 KB
testcase_03 AC 43 ms
58,368 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 45 ms
60,672 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 2,957 ms
207,116 KB
testcase_08 AC 1,644 ms
144,640 KB
testcase_09 AC 1,151 ms
137,900 KB
testcase_10 AC 1,373 ms
140,392 KB
testcase_11 AC 1,789 ms
146,488 KB
testcase_12 AC 46 ms
63,872 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 45 ms
61,824 KB
testcase_15 AC 1,843 ms
146,944 KB
testcase_16 AC 41 ms
58,112 KB
testcase_17 AC 468 ms
128,972 KB
testcase_18 AC 2,380 ms
200,632 KB
testcase_19 AC 265 ms
126,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))

S = {0}
for a in A:
    new_S = S.copy()
    for s in S:
        new_S.add(s ^ a)
    S = new_S
print(len(S))
0