結果

問題 No.1731 Product of Subsequence
ユーザー puznekopuzneko
提出日時 2021-11-20 01:16:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 780 bytes
コンパイル時間 783 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 87,988 KB
最終ジャッジ日時 2025-01-02 04:35:08
合計ジャッジ時間 7,238 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 366 ms
87,536 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 42 ms
58,240 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 48 ms
62,208 KB
testcase_06 AC 47 ms
60,928 KB
testcase_07 AC 41 ms
58,368 KB
testcase_08 AC 67 ms
64,000 KB
testcase_09 WA -
testcase_10 AC 377 ms
87,936 KB
testcase_11 AC 325 ms
87,292 KB
testcase_12 AC 58 ms
66,816 KB
testcase_13 AC 62 ms
67,072 KB
testcase_14 AC 308 ms
87,424 KB
testcase_15 AC 36 ms
52,480 KB
testcase_16 WA -
testcase_17 AC 37 ms
52,352 KB
testcase_18 AC 363 ms
87,988 KB
testcase_19 AC 66 ms
67,072 KB
testcase_20 AC 310 ms
87,168 KB
testcase_21 AC 388 ms
87,936 KB
testcase_22 AC 365 ms
87,936 KB
testcase_23 WA -
testcase_24 AC 62 ms
66,944 KB
testcase_25 AC 61 ms
67,456 KB
testcase_26 AC 106 ms
70,400 KB
testcase_27 AC 135 ms
71,680 KB
testcase_28 AC 226 ms
86,912 KB
testcase_29 AC 115 ms
70,784 KB
testcase_30 AC 385 ms
87,936 KB
testcase_31 AC 361 ms
87,936 KB
testcase_32 WA -
testcase_33 AC 70 ms
68,352 KB
testcase_34 AC 73 ms
68,224 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