結果

問題 No.1731 Product of Subsequence
ユーザー puznekopuzneko
提出日時 2021-11-20 01:15:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 717 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 296,364 KB
最終ジャッジ日時 2024-06-10 13:59:06
合計ジャッジ時間 11,511 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 35 ms
52,464 KB
testcase_02 AC 34 ms
52,068 KB
testcase_03 AC 37 ms
57,792 KB
testcase_04 AC 33 ms
53,280 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 40 ms
59,032 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 53 ms
67,608 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 34 ms
53,816 KB
testcase_16 WA -
testcase_17 AC 34 ms
53,168 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
from sys import stdin
n, m, *a = map(int, stdin.read().split())

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][j]
        dp[i+1][dividedict[val]] += dp[i][j]

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