結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:36:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,821 ms / 3,500 ms
コード長 845 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 105,596 KB
最終ジャッジ日時 2024-11-18 08:46:03
合計ジャッジ時間 26,483 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,684 KB
testcase_01 AC 35 ms
52,296 KB
testcase_02 AC 34 ms
52,448 KB
testcase_03 AC 33 ms
52,268 KB
testcase_04 AC 33 ms
53,876 KB
testcase_05 AC 32 ms
53,092 KB
testcase_06 AC 32 ms
52,056 KB
testcase_07 AC 34 ms
52,068 KB
testcase_08 AC 32 ms
52,136 KB
testcase_09 AC 33 ms
52,704 KB
testcase_10 AC 32 ms
52,464 KB
testcase_11 AC 33 ms
53,304 KB
testcase_12 AC 357 ms
99,988 KB
testcase_13 AC 375 ms
99,832 KB
testcase_14 AC 377 ms
100,072 KB
testcase_15 AC 210 ms
103,964 KB
testcase_16 AC 227 ms
103,456 KB
testcase_17 AC 251 ms
99,936 KB
testcase_18 AC 978 ms
105,596 KB
testcase_19 AC 969 ms
103,940 KB
testcase_20 AC 1,686 ms
103,480 KB
testcase_21 AC 1,795 ms
103,788 KB
testcase_22 AC 1,856 ms
103,728 KB
testcase_23 AC 1,740 ms
105,180 KB
testcase_24 AC 1,705 ms
105,144 KB
testcase_25 AC 1,774 ms
104,696 KB
testcase_26 AC 2,821 ms
104,356 KB
testcase_27 AC 1,446 ms
104,392 KB
testcase_28 AC 1,667 ms
104,364 KB
testcase_29 AC 1,518 ms
105,104 KB
testcase_30 AC 1,298 ms
105,052 KB
testcase_31 AC 1,647 ms
105,220 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