結果

問題 No.1731 Product of Subsequence
ユーザー mkawa2mkawa2
提出日時 2021-11-05 23:19:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,348 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 77,016 KB
最終ジャッジ日時 2024-11-06 14:32:06
合計ジャッジ時間 6,759 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 397 ms
77,000 KB
testcase_01 AC 39 ms
54,524 KB
testcase_02 AC 39 ms
53,728 KB
testcase_03 AC 44 ms
59,384 KB
testcase_04 AC 39 ms
53,428 KB
testcase_05 AC 48 ms
62,084 KB
testcase_06 AC 48 ms
62,624 KB
testcase_07 AC 44 ms
60,364 KB
testcase_08 AC 73 ms
76,520 KB
testcase_09 WA -
testcase_10 AC 434 ms
77,008 KB
testcase_11 AC 379 ms
76,784 KB
testcase_12 AC 53 ms
67,292 KB
testcase_13 AC 64 ms
76,788 KB
testcase_14 AC 343 ms
76,592 KB
testcase_15 AC 39 ms
52,872 KB
testcase_16 WA -
testcase_17 AC 40 ms
53,040 KB
testcase_18 AC 403 ms
76,988 KB
testcase_19 AC 64 ms
76,692 KB
testcase_20 AC 343 ms
77,016 KB
testcase_21 AC 438 ms
76,904 KB
testcase_22 AC 64 ms
69,248 KB
testcase_23 WA -
testcase_24 AC 68 ms
76,848 KB
testcase_25 AC 64 ms
76,564 KB
testcase_26 AC 121 ms
76,688 KB
testcase_27 AC 142 ms
76,652 KB
testcase_28 AC 234 ms
77,004 KB
testcase_29 AC 121 ms
76,764 KB
testcase_30 AC 371 ms
76,908 KB
testcase_31 AC 65 ms
70,380 KB
testcase_32 WA -
testcase_33 AC 54 ms
67,812 KB
testcase_34 AC 82 ms
76,696 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((n*(n-1)//2-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