結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー soisusoisu
提出日時 2021-09-20 10:31:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,024 ms / 5,000 ms
コード長 214 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-07-02 13:06:09
合計ジャッジ時間 16,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
59,008 KB
testcase_01 AC 50 ms
58,752 KB
testcase_02 AC 55 ms
60,032 KB
testcase_03 AC 53 ms
59,520 KB
testcase_04 AC 49 ms
58,880 KB
testcase_05 AC 57 ms
60,800 KB
testcase_06 AC 51 ms
59,520 KB
testcase_07 AC 2,024 ms
62,976 KB
testcase_08 AC 1,707 ms
63,232 KB
testcase_09 AC 1,184 ms
62,976 KB
testcase_10 AC 1,412 ms
63,360 KB
testcase_11 AC 1,840 ms
63,232 KB
testcase_12 AC 56 ms
59,904 KB
testcase_13 AC 47 ms
58,240 KB
testcase_14 AC 1,476 ms
62,592 KB
testcase_15 AC 1,908 ms
63,360 KB
testcase_16 AC 53 ms
59,520 KB
testcase_17 AC 465 ms
62,464 KB
testcase_18 AC 1,844 ms
62,592 KB
testcase_19 AC 267 ms
61,696 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):
        dp[j^A[i]]|=dp[j]

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