結果

問題 No.1731 Product of Subsequence
ユーザー mkawa2mkawa2
提出日時 2021-11-05 23:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-11-08 04:52:37
合計ジャッジ時間 7,035 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
76,672 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 43 ms
57,344 KB
testcase_04 AC 40 ms
52,096 KB
testcase_05 AC 48 ms
60,928 KB
testcase_06 AC 52 ms
60,800 KB
testcase_07 AC 45 ms
58,752 KB
testcase_08 AC 75 ms
76,264 KB
testcase_09 AC 43 ms
58,752 KB
testcase_10 AC 434 ms
76,556 KB
testcase_11 AC 378 ms
76,928 KB
testcase_12 AC 55 ms
66,560 KB
testcase_13 AC 65 ms
76,544 KB
testcase_14 AC 341 ms
76,672 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 40 ms
52,352 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 412 ms
76,496 KB
testcase_19 AC 67 ms
76,360 KB
testcase_20 AC 342 ms
76,740 KB
testcase_21 AC 441 ms
76,672 KB
testcase_22 AC 69 ms
68,736 KB
testcase_23 AC 45 ms
58,112 KB
testcase_24 AC 69 ms
76,524 KB
testcase_25 AC 65 ms
76,288 KB
testcase_26 AC 120 ms
76,800 KB
testcase_27 AC 142 ms
76,460 KB
testcase_28 AC 240 ms
76,612 KB
testcase_29 AC 126 ms
76,416 KB
testcase_30 AC 379 ms
76,672 KB
testcase_31 AC 66 ms
68,736 KB
testcase_32 AC 43 ms
58,240 KB
testcase_33 AC 57 ms
67,328 KB
testcase_34 AC 82 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
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 = 18446744073709551615
# inf = 4294967295
md = 10**9+7
# md = 998244353

def gcd(a, b):
    while b: a, b = b, a%b
    return a

def factors(a):
    if a <= 0: return [0]
    dd0, dd1 = [], []
    for d in range(1, round(a**0.5)+1):
        if a%d: continue
        dd0.append(d)
        dd1.append(a//d)
    if dd0[-1] == dd1[-1]: dd1.pop()
    return dd0+dd1[::-1]

n, k = LI()
aa = LI()

if k == 1:
    print((pow(2, n, md)-1)%md)
    exit()

ff = factors(k)
ftoj = {f: j for j, f in enumerate(ff)}
fn = len(ff)

dp = [0]*fn
dp[0] = 1

for a in aa:
    a = gcd(a, k)
    for j in range(fn)[::-1]:
        pre = dp[j]
        if pre == 0: continue
        g = gcd(a*ff[j], k)
        nj = ftoj[g]
        dp[nj] += pre
        dp[nj] %= md
    # print(dp)

print(dp[-1])
0