結果

問題 No.2171 OR Assignment
ユーザー mkawa2mkawa2
提出日時 2022-12-23 23:22:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 651 ms / 3,500 ms
コード長 1,175 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,216 KB
最終ジャッジ日時 2024-04-29 06:01:28
合計ジャッジ時間 10,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
53,504 KB
testcase_01 AC 49 ms
53,504 KB
testcase_02 AC 46 ms
53,632 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 AC 48 ms
53,504 KB
testcase_05 AC 46 ms
53,632 KB
testcase_06 AC 46 ms
53,248 KB
testcase_07 AC 48 ms
53,760 KB
testcase_08 AC 46 ms
53,632 KB
testcase_09 AC 46 ms
53,376 KB
testcase_10 AC 46 ms
53,504 KB
testcase_11 AC 47 ms
53,632 KB
testcase_12 AC 251 ms
99,716 KB
testcase_13 AC 254 ms
99,984 KB
testcase_14 AC 250 ms
99,584 KB
testcase_15 AC 144 ms
103,680 KB
testcase_16 AC 175 ms
104,192 KB
testcase_17 AC 163 ms
99,336 KB
testcase_18 AC 409 ms
99,484 KB
testcase_19 AC 407 ms
103,552 KB
testcase_20 AC 520 ms
103,680 KB
testcase_21 AC 551 ms
103,680 KB
testcase_22 AC 535 ms
104,320 KB
testcase_23 AC 515 ms
105,216 KB
testcase_24 AC 651 ms
105,216 KB
testcase_25 AC 611 ms
104,704 KB
testcase_26 AC 585 ms
104,320 KB
testcase_27 AC 500 ms
104,192 KB
testcase_28 AC 513 ms
104,448 KB
testcase_29 AC 486 ms
105,216 KB
testcase_30 AC 544 ms
104,960 KB
testcase_31 AC 582 ms
105,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
# inf = (1 << 31)-1
# md = 10**9+7
md = 998244353

from collections import Counter

n = II()
aa = LI()

dp = Counter()
for i, a in enumerate(aa):
    s = i == 0
    px = -1
    ndp = Counter()
    for x in sorted(dp, reverse=True):
        nx = x | a
        if nx != px and px != -1: ndp[px] = s
        s += dp[x]
        s %= md
        px = nx
    if px != -1: ndp[px] = s
    if px != a: ndp[a] = s
    dp = ndp
    # pDB(dp)

ans = 0
for v in dp.values():
    ans += v
    ans %= md

print(ans)
0