結果

問題 No.1443 Andd
ユーザー tamatotamato
提出日時 2021-03-26 22:17:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,015 ms / 2,000 ms
コード長 1,068 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 401,184 KB
最終ジャッジ日時 2024-11-28 23:42:06
合計ジャッジ時間 8,834 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
59,584 KB
testcase_01 AC 45 ms
59,936 KB
testcase_02 AC 46 ms
60,212 KB
testcase_03 AC 83 ms
76,400 KB
testcase_04 AC 105 ms
90,604 KB
testcase_05 AC 91 ms
86,204 KB
testcase_06 AC 77 ms
74,856 KB
testcase_07 AC 105 ms
90,084 KB
testcase_08 AC 99 ms
88,224 KB
testcase_09 AC 58 ms
65,604 KB
testcase_10 AC 113 ms
92,600 KB
testcase_11 AC 107 ms
91,160 KB
testcase_12 AC 106 ms
90,764 KB
testcase_13 AC 299 ms
157,568 KB
testcase_14 AC 297 ms
157,808 KB
testcase_15 AC 299 ms
157,824 KB
testcase_16 AC 298 ms
157,964 KB
testcase_17 AC 300 ms
157,656 KB
testcase_18 AC 1,012 ms
401,172 KB
testcase_19 AC 1,008 ms
401,112 KB
testcase_20 AC 1,015 ms
401,184 KB
testcase_21 AC 1,008 ms
400,728 KB
testcase_22 AC 1,009 ms
400,892 KB
権限があれば一括ダウンロードができます

ソースコード

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
            if dp[i][state] or dp_over[i][state]:
                dp[i+1][state_new_and] = 1
            # 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