結果

問題 No.1444 !Andd
ユーザー mkawa2mkawa2
提出日時 2023-12-27 21:53:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 1,222 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 78,220 KB
最終ジャッジ日時 2024-09-27 15:35:15
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,508 KB
testcase_01 AC 40 ms
58,376 KB
testcase_02 AC 40 ms
58,744 KB
testcase_03 AC 150 ms
76,604 KB
testcase_04 AC 120 ms
76,664 KB
testcase_05 AC 52 ms
68,592 KB
testcase_06 AC 132 ms
76,904 KB
testcase_07 AC 112 ms
76,744 KB
testcase_08 AC 216 ms
76,588 KB
testcase_09 AC 149 ms
76,720 KB
testcase_10 AC 50 ms
66,884 KB
testcase_11 AC 48 ms
66,752 KB
testcase_12 AC 247 ms
76,784 KB
testcase_13 AC 325 ms
77,244 KB
testcase_14 AC 64 ms
76,332 KB
testcase_15 AC 317 ms
76,888 KB
testcase_16 AC 468 ms
77,732 KB
testcase_17 AC 78 ms
77,512 KB
testcase_18 AC 452 ms
77,764 KB
testcase_19 AC 458 ms
77,896 KB
testcase_20 AC 458 ms
77,772 KB
testcase_21 AC 467 ms
78,220 KB
testcase_22 AC 462 ms
77,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(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-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

n=II()
aa=LI()
m=1024

under=set()
under.add(1)
over=[0]*m
zero=0
for a in aa:
    if a==0:zero=1
    if zero:
        print(1)
        continue
    pu,po,under,over=under,over,set(),[0]*m
    for p in pu:
        s=p*a
        if s<m:
            under.add(s)
        else:
            over[s%m]+=1
        under.add(p&a)
    for p in range(m):
        if po[p]:
            over[p*a%m]+=po[p]
            under.add(p&a)
    print(sum(over)+len(under))
0