結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:32:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 81,996 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-11-18 08:41:52
合計ジャッジ時間 26,925 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,396 KB
testcase_01 AC 33 ms
52,008 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 34 ms
52,132 KB
testcase_05 AC 33 ms
52,264 KB
testcase_06 AC 34 ms
53,008 KB
testcase_07 AC 33 ms
52,748 KB
testcase_08 AC 32 ms
52,968 KB
testcase_09 WA -
testcase_10 AC 32 ms
52,708 KB
testcase_11 AC 34 ms
52,220 KB
testcase_12 AC 356 ms
99,904 KB
testcase_13 AC 361 ms
99,916 KB
testcase_14 AC 367 ms
99,860 KB
testcase_15 AC 170 ms
103,608 KB
testcase_16 WA -
testcase_17 AC 240 ms
99,736 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,789 ms
104,960 KB
testcase_25 AC 1,768 ms
104,704 KB
testcase_26 AC 2,941 ms
104,320 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,378 ms
105,088 KB
testcase_31 AC 1,736 ms
105,216 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),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(sum(DP)%mod)
0