結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kiccho1101kiccho1101
提出日時 2022-04-23 18:49:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,689 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 250,768 KB
最終ジャッジ日時 2024-06-25 05:24:03
合計ジャッジ時間 35,727 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
61,316 KB
testcase_01 AC 49 ms
62,240 KB
testcase_02 AC 57 ms
64,356 KB
testcase_03 AC 55 ms
63,188 KB
testcase_04 AC 49 ms
62,616 KB
testcase_05 AC 58 ms
66,208 KB
testcase_06 AC 52 ms
62,004 KB
testcase_07 AC 4,689 ms
249,520 KB
testcase_08 AC 4,171 ms
250,768 KB
testcase_09 AC 2,858 ms
250,420 KB
testcase_10 AC 3,416 ms
249,376 KB
testcase_11 AC 4,438 ms
249,588 KB
testcase_12 AC 59 ms
64,688 KB
testcase_13 AC 42 ms
60,292 KB
testcase_14 AC 3,847 ms
250,300 KB
testcase_15 AC 4,587 ms
250,248 KB
testcase_16 AC 54 ms
63,720 KB
testcase_17 AC 1,143 ms
249,268 KB
testcase_18 AC 4,321 ms
249,364 KB
testcase_19 AC 585 ms
201,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

M = 1 << 15

# dp[i][j]:  i番目までの数字でjにできるかどうか
dp = [False] * (M + 1)
dp[0] = True
for i in range(N):
    ndp = [False] * (M + 1)
    for j in range(M + 1):
        ndp[j] = dp[j]
        if j ^ A[i] < M + 1:
            ndp[j] |= dp[j ^ A[i]]
    dp = ndp

print(sum(dp))
0