結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kiccho1101kiccho1101
提出日時 2022-04-23 18:48:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 355 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 249,352 KB
最終ジャッジ日時 2024-06-25 05:23:05
合計ジャッジ時間 35,121 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,288 KB
testcase_01 AC 48 ms
61,184 KB
testcase_02 AC 60 ms
63,616 KB
testcase_03 AC 55 ms
62,848 KB
testcase_04 AC 47 ms
60,672 KB
testcase_05 AC 58 ms
64,000 KB
testcase_06 AC 52 ms
61,824 KB
testcase_07 WA -
testcase_08 AC 4,060 ms
249,352 KB
testcase_09 AC 2,828 ms
248,564 KB
testcase_10 AC 3,360 ms
248,624 KB
testcase_11 AC 4,370 ms
248,780 KB
testcase_12 WA -
testcase_13 AC 44 ms
58,624 KB
testcase_14 AC 3,778 ms
248,064 KB
testcase_15 AC 4,546 ms
249,344 KB
testcase_16 AC 56 ms
62,848 KB
testcase_17 AC 1,121 ms
248,064 KB
testcase_18 WA -
testcase_19 AC 577 ms
200,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

M = 32763

# 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