結果

問題 No.2171 OR Assignment
ユーザー titiatitia
提出日時 2022-12-25 01:32:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-04-29 07:21:39
合計ジャッジ時間 29,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 41 ms
52,480 KB
testcase_07 AC 41 ms
51,712 KB
testcase_08 AC 41 ms
51,712 KB
testcase_09 WA -
testcase_10 AC 41 ms
51,968 KB
testcase_11 AC 41 ms
51,968 KB
testcase_12 AC 405 ms
100,096 KB
testcase_13 AC 416 ms
99,840 KB
testcase_14 AC 413 ms
100,224 KB
testcase_15 AC 201 ms
103,424 KB
testcase_16 WA -
testcase_17 AC 278 ms
99,720 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 1,947 ms
105,088 KB
testcase_25 AC 1,938 ms
104,704 KB
testcase_26 AC 3,235 ms
104,448 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 1,482 ms
105,216 KB
testcase_31 AC 1,887 ms
105,344 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