結果

問題 No.1443 Andd
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-26 18:12:10
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 546 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 267,508 KB
最終ジャッジ日時 2024-10-26 18:12:31
合計ジャッジ時間 17,810 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,056 KB
testcase_01 AC 39 ms
52,692 KB
testcase_02 AC 39 ms
52,616 KB
testcase_03 AC 830 ms
177,560 KB
testcase_04 AC 1,779 ms
259,452 KB
testcase_05 AC 782 ms
168,376 KB
testcase_06 AC 667 ms
154,120 KB
testcase_07 AC 1,529 ms
222,140 KB
testcase_08 AC 1,132 ms
199,016 KB
testcase_09 AC 64 ms
74,948 KB
testcase_10 TLE -
testcase_11 AC 1,670 ms
235,856 KB
testcase_12 AC 1,818 ms
260,516 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

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

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

        new_a_set = set()
        for b in a_set:
            new_a_set.add(a + b)
            new_a_set.add(a & b)
        answer[i] = len(new_a_set)
        a_set = new_a_set
    
    for i in range(N):
        print(answer[i])












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