結果

問題 No.1731 Product of Subsequence
ユーザー MineMine
提出日時 2022-01-07 18:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 992 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-04-25 17:56:48
合計ジャッジ時間 12,877 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 845 ms
78,536 KB
testcase_01 AC 37 ms
54,288 KB
testcase_02 AC 38 ms
52,720 KB
testcase_03 AC 40 ms
57,904 KB
testcase_04 AC 38 ms
52,904 KB
testcase_05 AC 46 ms
60,952 KB
testcase_06 AC 43 ms
60,676 KB
testcase_07 AC 41 ms
58,784 KB
testcase_08 AC 85 ms
70,368 KB
testcase_09 AC 46 ms
61,728 KB
testcase_10 AC 990 ms
78,864 KB
testcase_11 AC 831 ms
78,196 KB
testcase_12 AC 50 ms
63,652 KB
testcase_13 AC 78 ms
76,536 KB
testcase_14 AC 744 ms
77,720 KB
testcase_15 AC 38 ms
52,932 KB
testcase_16 AC 37 ms
52,524 KB
testcase_17 AC 37 ms
54,004 KB
testcase_18 AC 866 ms
78,264 KB
testcase_19 AC 77 ms
76,628 KB
testcase_20 AC 692 ms
77,612 KB
testcase_21 AC 992 ms
79,232 KB
testcase_22 AC 695 ms
77,864 KB
testcase_23 AC 47 ms
62,416 KB
testcase_24 AC 65 ms
65,688 KB
testcase_25 AC 56 ms
65,768 KB
testcase_26 AC 219 ms
76,656 KB
testcase_27 AC 276 ms
76,628 KB
testcase_28 AC 503 ms
76,948 KB
testcase_29 AC 235 ms
76,472 KB
testcase_30 AC 837 ms
78,764 KB
testcase_31 AC 712 ms
77,804 KB
testcase_32 AC 45 ms
61,644 KB
testcase_33 AC 107 ms
76,352 KB
testcase_34 AC 127 ms
76,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math


def make_divisors(n):
    ans = []
    for i in range(1, n+1):
        if i*i > n:
            break
        if n % i == 0:
            ans.append(i)
            if i != n // i:
                ans.append(n//i)
    return sorted(ans)


n, k = map(int, input().split())
a = list(map(int, input().split()))
mod = 10**9+7
divs = make_divisors(k)
dp = {}
for key in divs:
    dp[key] = 0
dp[1] += 1

for i in range(n):
    dp_copy = dp.copy()
    for key in divs:
        to = math.gcd(k, a[i]*key)
        dp[to] += dp_copy[key]
        dp[to] %= mod
    
if k == 1:
    print((dp[k]-1)%mod)
else:
    print(dp[k]%mod)
0