結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー 👑 KazunKazun
提出日時 2020-11-13 15:52:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 170 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 69,120 KB
最終ジャッジ日時 2024-07-22 20:03:28
合計ジャッジ時間 3,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 299 ms
61,568 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 317 ms
62,336 KB
testcase_12 RE -
testcase_13 AC 38 ms
51,840 KB
testcase_14 AC 325 ms
61,568 KB
testcase_15 AC 327 ms
61,568 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

T=1<<(N-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