結果

問題 No.1731 Product of Subsequence
ユーザー puznekopuzneko
提出日時 2021-11-20 01:16:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 780 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 87,536 KB
最終ジャッジ日時 2024-06-10 14:01:28
合計ジャッジ時間 6,749 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 352 ms
87,228 KB
testcase_01 AC 33 ms
52,504 KB
testcase_02 AC 30 ms
52,608 KB
testcase_03 AC 35 ms
59,076 KB
testcase_04 AC 34 ms
53,944 KB
testcase_05 AC 43 ms
63,268 KB
testcase_06 AC 41 ms
60,960 KB
testcase_07 AC 36 ms
58,512 KB
testcase_08 AC 61 ms
63,708 KB
testcase_09 WA -
testcase_10 AC 349 ms
87,536 KB
testcase_11 AC 299 ms
86,560 KB
testcase_12 AC 53 ms
67,416 KB
testcase_13 AC 54 ms
67,656 KB
testcase_14 AC 278 ms
87,152 KB
testcase_15 AC 33 ms
52,888 KB
testcase_16 WA -
testcase_17 AC 32 ms
53,376 KB
testcase_18 AC 336 ms
87,388 KB
testcase_19 AC 53 ms
67,844 KB
testcase_20 AC 280 ms
86,652 KB
testcase_21 AC 344 ms
87,464 KB
testcase_22 AC 343 ms
87,460 KB
testcase_23 WA -
testcase_24 AC 54 ms
68,328 KB
testcase_25 AC 51 ms
68,264 KB
testcase_26 AC 97 ms
70,996 KB
testcase_27 AC 114 ms
73,404 KB
testcase_28 AC 206 ms
86,460 KB
testcase_29 AC 99 ms
70,780 KB
testcase_30 AC 354 ms
87,316 KB
testcase_31 AC 334 ms
87,364 KB
testcase_32 WA -
testcase_33 AC 66 ms
69,132 KB
testcase_34 AC 61 ms
68,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from sys import stdin
n, m, *a = map(int, stdin.read().split())
p = 10**9+7

divideset = set()
for i in range(1,int(math.floor(math.sqrt(m)))+2):
    if m % i == 0:
        divideset.add(i)
        divideset.add(m//i)

dividelist = list(divideset)
dividelist.sort()
dividedict = dict()
nd = len(dividelist)
for i in range(nd):
    dividedict[dividelist[i]] = i

for i in range(n):
    kari = math.gcd(a[i],m)
    a[i] = kari

dp = [[0 for i in range(nd)] for j in range(n+1)]
dp[0][0] = 1
for i in range(n):
    for j in range(nd):
        kari = a[i] * dividelist[j]
        val = math.gcd(kari,m)
        dp[i+1][j] = (dp[i+1][j] + dp[i][j]) % p
        dp[i+1][dividedict[val]] = (dp[i+1][dividedict[val]] + dp[i][j]) % p

ans = dp[n][nd-1]
print("{}".format(ans))
0