結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー asumo0729asumo0729
提出日時 2020-12-19 19:09:31
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 621 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 250,996 KB
最終ジャッジ日時 2024-09-21 10:32:50
合計ジャッジ時間 16,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
61,576 KB
testcase_01 AC 49 ms
63,148 KB
testcase_02 AC 53 ms
65,576 KB
testcase_03 AC 51 ms
65,040 KB
testcase_04 AC 46 ms
61,344 KB
testcase_05 AC 53 ms
65,196 KB
testcase_06 AC 49 ms
62,708 KB
testcase_07 AC 2,464 ms
249,804 KB
testcase_08 AC 1,806 ms
249,344 KB
testcase_09 AC 1,286 ms
248,964 KB
testcase_10 AC 1,516 ms
249,340 KB
testcase_11 AC 1,939 ms
250,032 KB
testcase_12 AC 54 ms
65,640 KB
testcase_13 RE -
testcase_14 AC 1,141 ms
250,996 KB
testcase_15 AC 2,006 ms
250,904 KB
testcase_16 AC 51 ms
64,128 KB
testcase_17 AC 561 ms
248,720 KB
testcase_18 AC 2,138 ms
249,344 KB
testcase_19 AC 327 ms
203,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
stdin=sys.stdin

ip=lambda: int(sp())
fp=lambda: float(sp())
lp=lambda:list(map(int,stdin.readline().split()))
tp=lambda:tuple(map(int,stdin.readline().split()))
sp=lambda:stdin.readline().rstrip()
yp=lambda:print('Yes')
np=lambda:print('No')

n=ip()
a=lp()
dp0=[-1 for _ in range(2**15+1)]
dp1=[-1 for _ in range(2**15+1)]

dp0[0]=0
for i in range(n):
    for j in range(2**15+1):
        if dp0[j]!=-1:
            dp1[j]=1
            now=j^a[i]
            dp1[j^a[i]]=1
    dp0=dp1
    dp1=[-1 for _ in range(2**15+10)]
    

ans=0
for u in range(2**15+10):
    if dp0[u]!=-1:
        ans+=1

print(ans)

0