結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー soisusoisu
提出日時 2021-09-20 10:24:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 308 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 717,440 KB
最終ジャッジ日時 2024-07-02 13:05:22
合計ジャッジ時間 38,754 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
60,416 KB
testcase_01 AC 56 ms
60,800 KB
testcase_02 AC 62 ms
63,232 KB
testcase_03 AC 62 ms
62,464 KB
testcase_04 AC 55 ms
60,672 KB
testcase_05 AC 62 ms
62,336 KB
testcase_06 AC 56 ms
60,928 KB
testcase_07 MLE -
testcase_08 MLE -
testcase_09 AC 3,016 ms
466,816 KB
testcase_10 MLE -
testcase_11 TLE -
testcase_12 WA -
testcase_13 AC 50 ms
59,008 KB
testcase_14 MLE -
testcase_15 TLE -
testcase_16 AC 58 ms
62,720 KB
testcase_17 AC 845 ms
206,208 KB
testcase_18 MLE -
testcase_19 AC 425 ms
139,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Max=2**14+1
dp=[[False]*Max for i in range(N+1)]
dp[0][0]=True

for i in range(N):
    for j in range(Max):
        if j^A[i]<Max:
            dp[i+1][j^A[i]]|=dp[i][j]
        dp[i+1][j]|=dp[i][j]

ans=0
for i in range(Max):
    if dp[N][i]:ans+=1
print(ans)
0