結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー otamay6otamay6
提出日時 2019-11-18 10:49:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,366 ms / 5,000 ms
コード長 164 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 258,340 KB
最終ジャッジ日時 2024-07-02 18:07:19
合計ジャッジ時間 11,672 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,820 KB
testcase_01 AC 36 ms
52,352 KB
testcase_02 AC 39 ms
59,628 KB
testcase_03 AC 39 ms
58,240 KB
testcase_04 AC 36 ms
53,256 KB
testcase_05 AC 42 ms
61,156 KB
testcase_06 AC 37 ms
52,244 KB
testcase_07 AC 2,366 ms
258,340 KB
testcase_08 AC 1,184 ms
88,732 KB
testcase_09 AC 823 ms
85,248 KB
testcase_10 AC 984 ms
86,812 KB
testcase_11 AC 1,278 ms
90,112 KB
testcase_12 AC 43 ms
64,748 KB
testcase_13 AC 36 ms
51,812 KB
testcase_14 AC 43 ms
62,828 KB
testcase_15 AC 1,326 ms
90,548 KB
testcase_16 AC 38 ms
57,600 KB
testcase_17 AC 328 ms
79,036 KB
testcase_18 AC 1,843 ms
258,092 KB
testcase_19 AC 181 ms
77,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=set()
dp.add(0)

for i in range(N):
    fr = list(dp)
    for K in fr:
        dp.add(A[i]^K)
print(len(dp))
0