結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー wgrapewgrape
提出日時 2024-10-15 16:20:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,270 ms / 5,000 ms
コード長 188 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 81,536 KB
実行使用メモリ 206,764 KB
最終ジャッジ日時 2024-10-15 16:21:12
合計ジャッジ時間 16,813 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 46 ms
58,752 KB
testcase_03 AC 46 ms
57,856 KB
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 47 ms
60,032 KB
testcase_06 AC 40 ms
51,712 KB
testcase_07 AC 3,270 ms
206,764 KB
testcase_08 AC 1,703 ms
144,056 KB
testcase_09 AC 1,209 ms
137,984 KB
testcase_10 AC 1,427 ms
140,416 KB
testcase_11 AC 1,851 ms
145,792 KB
testcase_12 AC 48 ms
62,976 KB
testcase_13 AC 39 ms
51,712 KB
testcase_14 AC 49 ms
61,696 KB
testcase_15 AC 1,932 ms
147,072 KB
testcase_16 AC 43 ms
57,856 KB
testcase_17 AC 483 ms
129,024 KB
testcase_18 AC 2,653 ms
200,688 KB
testcase_19 AC 311 ms
126,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = set()
dp.add(0)

for a in A:
    new_dp = dp.copy()
    for d in dp:
        new_dp.add(a ^ d)
    dp = new_dp
    
print(len(dp))
0