結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー soisusoisu
提出日時 2021-09-20 10:30:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,145 ms / 5,000 ms
コード長 241 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-07-02 13:05:52
合計ジャッジ時間 14,993 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,648 KB
testcase_01 AC 44 ms
59,520 KB
testcase_02 AC 47 ms
60,160 KB
testcase_03 AC 43 ms
60,160 KB
testcase_04 AC 40 ms
59,136 KB
testcase_05 AC 46 ms
60,800 KB
testcase_06 AC 44 ms
59,776 KB
testcase_07 AC 2,145 ms
62,848 KB
testcase_08 AC 1,651 ms
64,000 KB
testcase_09 AC 1,126 ms
63,104 KB
testcase_10 AC 1,375 ms
63,232 KB
testcase_11 AC 1,764 ms
63,744 KB
testcase_12 AC 47 ms
60,288 KB
testcase_13 AC 38 ms
58,368 KB
testcase_14 AC 1,268 ms
62,976 KB
testcase_15 AC 1,844 ms
64,256 KB
testcase_16 AC 48 ms
60,032 KB
testcase_17 AC 444 ms
62,720 KB
testcase_18 AC 1,840 ms
62,848 KB
testcase_19 AC 257 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Max=2**15
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