結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー netyo715netyo715
提出日時 2021-07-15 15:17:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,221 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 258,320 KB
最終ジャッジ日時 2024-07-04 15:27:20
合計ジャッジ時間 11,105 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 37 ms
58,624 KB
testcase_03 AC 38 ms
57,600 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 38 ms
60,656 KB
testcase_06 AC 34 ms
52,224 KB
testcase_07 AC 2,221 ms
258,316 KB
testcase_08 AC 1,090 ms
88,748 KB
testcase_09 AC 745 ms
85,248 KB
testcase_10 AC 931 ms
86,812 KB
testcase_11 AC 1,192 ms
90,112 KB
testcase_12 AC 42 ms
64,320 KB
testcase_13 AC 34 ms
52,084 KB
testcase_14 AC 42 ms
61,056 KB
testcase_15 AC 1,300 ms
90,716 KB
testcase_16 AC 38 ms
57,472 KB
testcase_17 AC 304 ms
79,104 KB
testcase_18 AC 1,746 ms
258,320 KB
testcase_19 AC 171 ms
77,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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