結果

問題 No.1443 Andd
ユーザー first_vilfirst_vil
提出日時 2021-01-23 15:50:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 803 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,668 KB
実行使用メモリ 75,164 KB
最終ジャッジ日時 2024-06-09 21:17:29
合計ジャッジ時間 9,335 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
67,680 KB
testcase_01 AC 39 ms
60,904 KB
testcase_02 AC 39 ms
59,872 KB
testcase_03 AC 329 ms
65,724 KB
testcase_04 AC 488 ms
66,912 KB
testcase_05 AC 399 ms
66,464 KB
testcase_06 AC 313 ms
65,796 KB
testcase_07 AC 474 ms
66,372 KB
testcase_08 AC 423 ms
67,184 KB
testcase_09 AC 73 ms
63,828 KB
testcase_10 AC 580 ms
66,568 KB
testcase_11 AC 562 ms
66,136 KB
testcase_12 AC 501 ms
67,712 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    kC=1<<14
    import sys
    input=sys.stdin.readline
    
    n=int(input())
    a=list(map(int,input().split()))
    now=[[False]*kC for _ in range(2)]
    dp=[[False]*kC for _ in range(2)]
    
    now[0][0]=True
    rkC=range(kC)
    ans=1
    output=[]
    for i in range(1,n+1):
        for j in rkC:
            dp[i&1][j]=False
            now[i&1][j]=False
            if now[~i&1][j]:
                dp[i&1][j&a[i-1]]=True
        for j in rkC:
            if dp[i&1][j]:
                ans+=1
                now[i&1][j]=True
        if now[~i&1][0] and dp[i&1][a[i-1]]:
            ans-=1
        
        output.append(str(ans))
        
        for j in rkC:
            if now[~i&1][j]:
                now[i&1][(j+a[i-1])&(kC-1)]=True
    print('\n'.join(output))
main()
0