結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ronpooronpoo
提出日時 2023-08-23 17:22:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,596 ms / 5,000 ms
コード長 221 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 63,668 KB
最終ジャッジ日時 2024-06-01 14:47:36
合計ジャッジ時間 10,298 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
60,020 KB
testcase_01 AC 43 ms
59,016 KB
testcase_02 AC 45 ms
60,852 KB
testcase_03 AC 45 ms
59,760 KB
testcase_04 AC 42 ms
59,740 KB
testcase_05 AC 45 ms
59,700 KB
testcase_06 AC 43 ms
59,028 KB
testcase_07 AC 1,596 ms
63,368 KB
testcase_08 AC 1,019 ms
63,668 KB
testcase_09 AC 710 ms
63,000 KB
testcase_10 AC 853 ms
63,168 KB
testcase_11 AC 1,111 ms
63,036 KB
testcase_12 AC 47 ms
59,432 KB
testcase_13 AC 41 ms
58,788 KB
testcase_14 AC 360 ms
63,080 KB
testcase_15 AC 1,149 ms
62,468 KB
testcase_16 AC 44 ms
60,200 KB
testcase_17 AC 286 ms
61,532 KB
testcase_18 AC 1,323 ms
63,168 KB
testcase_19 AC 160 ms
62,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp = [False] * (2**15+10)
dp[0] = True
for i in range(N):
    for j in range(2**15):
        if dp[j]:
            dp[A[i]^j] = True

ans = sum(dp)        
print(ans)
0