結果

問題 No.1443 Andd
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-26 18:31:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,249 ms / 2,000 ms
コード長 957 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 77,976 KB
最終ジャッジ日時 2024-10-26 18:32:08
合計ジャッジ時間 10,969 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,124 KB
testcase_01 AC 37 ms
53,440 KB
testcase_02 AC 38 ms
53,080 KB
testcase_03 AC 97 ms
76,060 KB
testcase_04 AC 115 ms
76,124 KB
testcase_05 AC 99 ms
76,260 KB
testcase_06 AC 93 ms
76,272 KB
testcase_07 AC 112 ms
76,188 KB
testcase_08 AC 107 ms
76,144 KB
testcase_09 AC 58 ms
66,292 KB
testcase_10 AC 125 ms
76,220 KB
testcase_11 AC 118 ms
76,308 KB
testcase_12 AC 117 ms
76,332 KB
testcase_13 AC 376 ms
76,652 KB
testcase_14 AC 358 ms
76,600 KB
testcase_15 AC 361 ms
77,068 KB
testcase_16 AC 359 ms
77,040 KB
testcase_17 AC 356 ms
76,672 KB
testcase_18 AC 1,236 ms
77,900 KB
testcase_19 AC 1,241 ms
77,588 KB
testcase_20 AC 1,249 ms
77,976 KB
testcase_21 AC 1,240 ms
77,900 KB
testcase_22 AC 1,246 ms
77,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/1443



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

    maxa = max(A)
    k = 0
    while (1 << k) <= maxa:
        k += 1

    dp = [0] * (1 << k)
    a_set = {0}
    answer = [0] * N
    for i in range(N):
        a = A[i]

        new_dp = [0] * (1 << k)
        new_a_set = set()
        for x in a_set:
            b = x & a
            new_a_set.add(b)

            c = x + a
            if c < (1 << k):
                new_a_set.add(c)
            else:
                new_dp[c % (1 << k)] += 1

        for x in range(1 << k):
            if dp[x] > 0:
                b = x & a
                new_a_set.add(b)
            
            c = (x + a) % (1 << k)
            new_dp[c] += dp[x]
        a_set = new_a_set
        dp = new_dp
        answer[i] = sum(dp) + len(a_set)
    
    for i in range(N):
        print(answer[i])













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