結果

問題 No.1731 Product of Subsequence
ユーザー MineMine
提出日時 2022-01-07 18:16:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,028 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-11-08 05:19:34
合計ジャッジ時間 14,293 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 866 ms
78,336 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 43 ms
52,096 KB
testcase_03 AC 47 ms
57,344 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 AC 55 ms
60,544 KB
testcase_06 AC 51 ms
59,392 KB
testcase_07 AC 48 ms
57,344 KB
testcase_08 AC 97 ms
69,376 KB
testcase_09 AC 55 ms
61,184 KB
testcase_10 AC 1,028 ms
78,848 KB
testcase_11 AC 900 ms
78,336 KB
testcase_12 AC 72 ms
63,232 KB
testcase_13 AC 106 ms
76,288 KB
testcase_14 AC 770 ms
77,824 KB
testcase_15 AC 43 ms
51,712 KB
testcase_16 AC 43 ms
52,096 KB
testcase_17 AC 43 ms
52,096 KB
testcase_18 AC 896 ms
78,080 KB
testcase_19 AC 91 ms
76,288 KB
testcase_20 AC 716 ms
77,568 KB
testcase_21 AC 1,023 ms
78,848 KB
testcase_22 AC 713 ms
77,696 KB
testcase_23 AC 54 ms
61,312 KB
testcase_24 AC 73 ms
64,896 KB
testcase_25 AC 67 ms
64,512 KB
testcase_26 AC 235 ms
76,544 KB
testcase_27 AC 294 ms
76,416 KB
testcase_28 AC 525 ms
76,672 KB
testcase_29 AC 252 ms
76,288 KB
testcase_30 AC 877 ms
78,464 KB
testcase_31 AC 709 ms
77,696 KB
testcase_32 AC 53 ms
61,056 KB
testcase_33 AC 124 ms
76,672 KB
testcase_34 AC 145 ms
76,160 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