結果

問題 No.2171 OR Assignment
ユーザー suisensuisen
提出日時 2022-12-23 01:39:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 326 ms / 3,500 ms
コード長 503 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 107,328 KB
最終ジャッジ日時 2024-11-18 06:46:51
合計ジャッジ時間 6,714 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,948 KB
testcase_01 AC 38 ms
53,068 KB
testcase_02 AC 39 ms
52,420 KB
testcase_03 AC 38 ms
52,684 KB
testcase_04 AC 38 ms
53,008 KB
testcase_05 AC 38 ms
52,464 KB
testcase_06 AC 38 ms
52,068 KB
testcase_07 AC 37 ms
52,496 KB
testcase_08 AC 37 ms
52,408 KB
testcase_09 AC 38 ms
53,212 KB
testcase_10 AC 37 ms
53,960 KB
testcase_11 AC 36 ms
52,208 KB
testcase_12 AC 199 ms
102,388 KB
testcase_13 AC 196 ms
102,444 KB
testcase_14 AC 188 ms
102,144 KB
testcase_15 AC 114 ms
104,192 KB
testcase_16 AC 146 ms
104,068 KB
testcase_17 AC 130 ms
101,656 KB
testcase_18 AC 225 ms
106,936 KB
testcase_19 AC 209 ms
104,052 KB
testcase_20 AC 307 ms
104,408 KB
testcase_21 AC 306 ms
104,096 KB
testcase_22 AC 269 ms
104,540 KB
testcase_23 AC 259 ms
106,552 KB
testcase_24 AC 287 ms
106,220 KB
testcase_25 AC 282 ms
105,996 KB
testcase_26 AC 277 ms
105,140 KB
testcase_27 AC 265 ms
105,148 KB
testcase_28 AC 326 ms
105,264 KB
testcase_29 AC 321 ms
106,212 KB
testcase_30 AC 267 ms
107,328 KB
testcase_31 AC 276 ms
106,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

P = 998244353

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

ppos = []
pd = [1]
for i, v in enumerate(A):
    pos = [i]
    for j in reversed(ppos):
        nv = v | A[j]
        if nv != v:
            v = nv
            pos.append(j)
    pos.reverse()

    siz = len(pos)
    dp = [0] * (siz + 1)
    j = 0
    for k in range(siz):
        while j < len(ppos) and ppos[j] <= pos[k]:
            j += 1
        dp[k + 1] = dp[k] + pd[j]
    pd = [v % P for v in dp]
    ppos = pos
print(pd[-1])
0