結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー soisusoisu
提出日時 2021-09-20 10:30:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 243 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 65,356 KB
最終ジャッジ日時 2024-07-02 13:05:35
合計ジャッジ時間 8,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,080 KB
testcase_01 AC 39 ms
59,380 KB
testcase_02 AC 42 ms
61,384 KB
testcase_03 AC 41 ms
61,760 KB
testcase_04 AC 43 ms
59,964 KB
testcase_05 AC 42 ms
60,564 KB
testcase_06 AC 42 ms
60,720 KB
testcase_07 WA -
testcase_08 AC 944 ms
64,088 KB
testcase_09 AC 641 ms
64,380 KB
testcase_10 AC 785 ms
64,428 KB
testcase_11 AC 994 ms
63,912 KB
testcase_12 WA -
testcase_13 AC 37 ms
58,592 KB
testcase_14 AC 519 ms
64,060 KB
testcase_15 AC 1,020 ms
64,472 KB
testcase_16 AC 43 ms
60,924 KB
testcase_17 AC 265 ms
63,404 KB
testcase_18 WA -
testcase_19 AC 151 ms
62,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Max=2**14+1
dp=[False]*Max
dp[0]=True

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

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