結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 👑 KazunKazun
提出日時 2020-11-13 15:53:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 448 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 64,084 KB
最終ジャッジ日時 2024-07-22 20:03:33
合計ジャッジ時間 4,385 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,856 KB
testcase_01 AC 41 ms
51,692 KB
testcase_02 AC 46 ms
60,188 KB
testcase_03 AC 44 ms
58,492 KB
testcase_04 AC 43 ms
60,128 KB
testcase_05 AC 44 ms
59,616 KB
testcase_06 AC 44 ms
60,536 KB
testcase_07 AC 406 ms
62,976 KB
testcase_08 AC 405 ms
63,756 KB
testcase_09 AC 293 ms
61,472 KB
testcase_10 AC 342 ms
63,980 KB
testcase_11 AC 432 ms
63,388 KB
testcase_12 AC 45 ms
59,996 KB
testcase_13 AC 40 ms
53,212 KB
testcase_14 AC 44 ms
61,788 KB
testcase_15 AC 448 ms
64,084 KB
testcase_16 AC 44 ms
59,068 KB
testcase_17 AC 134 ms
62,268 KB
testcase_18 AC 389 ms
62,928 KB
testcase_19 AC 107 ms
60,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T=1<<(max(A)-1).bit_length()
DP=[0]*(2*T)
DP[0]=1

for a in A:
    for i in range(2*T):
        DP[i^a]|=DP[i]
print(sum(DP))
0