結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
58,880 KB
testcase_01 AC 49 ms
60,032 KB
testcase_02 AC 49 ms
62,208 KB
testcase_03 AC 48 ms
62,208 KB
testcase_04 AC 46 ms
59,392 KB
testcase_05 AC 52 ms
62,336 KB
testcase_06 AC 50 ms
59,904 KB
testcase_07 AC 1,763 ms
259,840 KB
testcase_08 AC 1,355 ms
259,840 KB
testcase_09 AC 979 ms
260,352 KB
testcase_10 AC 1,142 ms
260,192 KB
testcase_11 AC 1,449 ms
259,712 KB
testcase_12 AC 49 ms
62,848 KB
testcase_13 AC 43 ms
57,984 KB
testcase_14 AC 886 ms
258,304 KB
testcase_15 AC 1,498 ms
259,712 KB
testcase_16 AC 48 ms
61,824 KB
testcase_17 AC 464 ms
259,584 KB
testcase_18 AC 1,579 ms
259,840 KB
testcase_19 AC 267 ms
199,760 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