結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kiccho1101kiccho1101
提出日時 2022-04-23 18:46:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 340 bytes
コンパイル時間 1,764 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 250,908 KB
最終ジャッジ日時 2024-06-25 05:22:21
合計ジャッジ時間 30,968 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,032 KB
testcase_01 AC 48 ms
60,544 KB
testcase_02 AC 58 ms
64,128 KB
testcase_03 AC 57 ms
63,872 KB
testcase_04 AC 51 ms
62,080 KB
testcase_05 AC 59 ms
65,152 KB
testcase_06 AC 53 ms
63,360 KB
testcase_07 WA -
testcase_08 AC 3,486 ms
249,472 KB
testcase_09 AC 2,456 ms
249,728 KB
testcase_10 AC 2,911 ms
249,216 KB
testcase_11 AC 3,786 ms
249,728 KB
testcase_12 WA -
testcase_13 AC 41 ms
58,880 KB
testcase_14 AC 2,934 ms
249,216 KB
testcase_15 AC 3,937 ms
249,856 KB
testcase_16 AC 58 ms
64,384 KB
testcase_17 AC 994 ms
249,344 KB
testcase_18 WA -
testcase_19 AC 515 ms
168,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

print(sum(dp))
0