結果

問題 No.1443 Andd
ユーザー tamatotamato
提出日時 2021-03-26 22:15:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,046 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 401,408 KB
最終ジャッジ日時 2024-05-06 15:51:48
合計ジャッジ時間 7,389 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
59,648 KB
testcase_01 AC 48 ms
59,264 KB
testcase_02 AC 48 ms
59,648 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9
mask = 1023


def main():
    import sys
    input = sys.stdin.readline

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

    dp = [[0] * (1 << 10) for _ in range(N+1)]
    dp_over = [[0] * (1 << 10) for _ in range(N+1)]
    dp[0][0] = 1
    for i, a in enumerate(A):
        for state in range(1 << 10):
            # and
            state_new_and = state & a
            dp[i+1][state_new_and] |= dp[i][state] | dp_over[i][state]
            # add
            state_new_add = state + a
            state_new_add_masked = state_new_add & mask
            if dp[i][state]:
                if state_new_add != state_new_add_masked:
                    dp_over[i+1][state_new_add_masked] += 1
                else:
                    dp[i+1][state_new_add_masked] = 1
            dp_over[i+1][state_new_add_masked] += dp_over[i][state]
        ans = 0
        for state in range(1 << 10):
            ans += dp[i+1][state] + dp_over[i+1][state]
        print(ans)


if __name__ == '__main__':
    main()
0