結果

問題 No.1731 Product of Subsequence
ユーザー puznekopuzneko
提出日時 2021-11-20 01:20:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-11-08 05:14:34
合計ジャッジ時間 6,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 404 ms
87,424 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 47 ms
57,984 KB
testcase_04 AC 43 ms
52,096 KB
testcase_05 AC 56 ms
62,080 KB
testcase_06 AC 53 ms
60,544 KB
testcase_07 AC 48 ms
58,112 KB
testcase_08 AC 75 ms
63,488 KB
testcase_09 AC 50 ms
60,032 KB
testcase_10 AC 418 ms
87,296 KB
testcase_11 AC 359 ms
86,912 KB
testcase_12 AC 69 ms
66,688 KB
testcase_13 AC 72 ms
66,816 KB
testcase_14 AC 339 ms
87,296 KB
testcase_15 AC 43 ms
52,352 KB
testcase_16 AC 43 ms
51,840 KB
testcase_17 AC 43 ms
52,352 KB
testcase_18 AC 409 ms
87,680 KB
testcase_19 AC 73 ms
67,584 KB
testcase_20 AC 346 ms
86,656 KB
testcase_21 AC 416 ms
87,296 KB
testcase_22 AC 57 ms
62,080 KB
testcase_23 AC 51 ms
59,904 KB
testcase_24 AC 71 ms
66,816 KB
testcase_25 AC 71 ms
67,072 KB
testcase_26 AC 119 ms
70,528 KB
testcase_27 AC 140 ms
71,552 KB
testcase_28 AC 247 ms
86,400 KB
testcase_29 AC 125 ms
70,656 KB
testcase_30 AC 415 ms
87,424 KB
testcase_31 AC 57 ms
61,696 KB
testcase_32 AC 52 ms
59,776 KB
testcase_33 AC 53 ms
60,800 KB
testcase_34 AC 80 ms
67,968 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

check = True
for i in range(n):
    kari = math.gcd(a[i],m)
    a[i] = kari
    if kari != m:
        check = False
if check:
    ans = 1
    for i in range(n):
        ans = ans * 2 % p
    ans = (ans - 1) % p
    print("{}".format(ans))
    exit()

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