結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ああいいああいい
提出日時 2022-03-17 23:49:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,823 ms / 5,000 ms
コード長 219 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 260,388 KB
最終ジャッジ日時 2024-10-01 22:40:38
合計ジャッジ時間 13,193 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,632 KB
testcase_01 AC 47 ms
60,484 KB
testcase_02 AC 52 ms
62,468 KB
testcase_03 AC 48 ms
62,104 KB
testcase_04 AC 43 ms
59,320 KB
testcase_05 AC 49 ms
64,104 KB
testcase_06 AC 49 ms
60,836 KB
testcase_07 AC 1,823 ms
260,388 KB
testcase_08 AC 1,349 ms
260,220 KB
testcase_09 AC 985 ms
260,144 KB
testcase_10 AC 1,141 ms
259,920 KB
testcase_11 AC 1,449 ms
259,604 KB
testcase_12 AC 49 ms
63,764 KB
testcase_13 AC 43 ms
58,584 KB
testcase_14 AC 893 ms
258,852 KB
testcase_15 AC 1,489 ms
259,728 KB
testcase_16 AC 47 ms
62,116 KB
testcase_17 AC 460 ms
260,228 KB
testcase_18 AC 1,583 ms
260,100 KB
testcase_19 AC 266 ms
200,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C = 1 << 15
dp = [0] * (C + 1)
dp[0] = 1
for a in A:
    nx = dp.copy()
    for i in range(C+1):
        if dp[i]:
            nx[i^a] = 1
    dp = nx
print(sum(dp))
0