結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,223 ms / 3,500 ms
コード長 845 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 105,704 KB
最終ジャッジ日時 2024-04-29 07:25:22
合計ジャッジ時間 30,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 34 ms
51,584 KB
testcase_02 AC 32 ms
52,224 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 32 ms
51,456 KB
testcase_09 AC 33 ms
51,968 KB
testcase_10 AC 36 ms
51,968 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 385 ms
99,968 KB
testcase_13 AC 405 ms
99,944 KB
testcase_14 AC 410 ms
100,224 KB
testcase_15 AC 221 ms
103,808 KB
testcase_16 AC 256 ms
103,552 KB
testcase_17 AC 288 ms
99,996 KB
testcase_18 AC 1,053 ms
105,704 KB
testcase_19 AC 1,081 ms
104,192 KB
testcase_20 AC 1,878 ms
103,552 KB
testcase_21 AC 1,991 ms
103,808 KB
testcase_22 AC 2,127 ms
103,680 KB
testcase_23 AC 2,004 ms
105,088 KB
testcase_24 AC 1,955 ms
105,192 KB
testcase_25 AC 1,942 ms
104,576 KB
testcase_26 AC 3,223 ms
104,192 KB
testcase_27 AC 1,650 ms
104,320 KB
testcase_28 AC 1,877 ms
104,448 KB
testcase_29 AC 1,703 ms
105,088 KB
testcase_30 AC 1,497 ms
105,088 KB
testcase_31 AC 1,896 ms
105,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

prev=[0]*30

mod=998244353

IND=[0]
DP=[1]

for i in range(1,N):
    NDP=[]
    NIND=[]
    a=A[i]
    
    for j in range(30):
        if (1<<j) & a!= 0:
            prev[j]=i

    sp=sorted(set(prev)|{i},reverse=True)
    SA=[a]*len(sp)
    now=a
    for j in range(len(sp)):
        now|=A[sp[j]]
        SA[j]=now

    s=i

    for j in range(len(SA)):
        if j+1<len(SA) and SA[j]==SA[j+1]:
            continue
        else:      
            score=0
            for ix in range(len(IND)):
                if IND[ix]<=s:
                    score=(score+DP[ix])%mod

            NDP.append(score)
            NIND.append(sp[j])

            if j+1<len(sp):
                s=sp[j+1]

    DP=NDP
    IND=NIND
    #print(DP,IND)

print(sum(DP)%mod)
0