結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー nohakai3nohakai3
提出日時 2022-10-25 20:02:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 679 ms / 5,000 ms
コード長 216 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,988 KB
実行使用メモリ 64,152 KB
最終ジャッジ日時 2024-07-03 17:19:52
合計ジャッジ時間 6,546 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,728 KB
testcase_01 AC 45 ms
59,392 KB
testcase_02 AC 44 ms
60,452 KB
testcase_03 AC 43 ms
60,820 KB
testcase_04 AC 40 ms
59,348 KB
testcase_05 AC 44 ms
61,156 KB
testcase_06 AC 42 ms
59,728 KB
testcase_07 AC 550 ms
62,784 KB
testcase_08 AC 546 ms
63,896 KB
testcase_09 AC 383 ms
64,152 KB
testcase_10 AC 460 ms
63,316 KB
testcase_11 AC 583 ms
63,264 KB
testcase_12 AC 42 ms
60,404 KB
testcase_13 AC 39 ms
60,348 KB
testcase_14 AC 679 ms
62,360 KB
testcase_15 AC 606 ms
63,036 KB
testcase_16 AC 41 ms
61,536 KB
testcase_17 AC 173 ms
61,932 KB
testcase_18 AC 534 ms
62,448 KB
testcase_19 AC 107 ms
61,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
dp=[0]*(2**15)
dp[0]=1
for i in range(n):
    for j in range(2**15):
        dp[a[i]^j]|=dp[j]

ans=0
for j in range(1<<15):
    if dp[j]==1:
        ans+=1

print(ans)
0