結果
問題 | No.1731 Product of Subsequence |
ユーザー | puzneko |
提出日時 | 2021-11-20 01:15:07 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 717 bytes |
コンパイル時間 | 247 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 297,032 KB |
最終ジャッジ日時 | 2025-01-02 04:29:00 |
合計ジャッジ時間 | 11,585 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 35 ms
52,968 KB |
testcase_02 | AC | 34 ms
53,612 KB |
testcase_03 | AC | 38 ms
59,124 KB |
testcase_04 | AC | 35 ms
53,548 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 39 ms
59,060 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 56 ms
68,152 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 35 ms
53,420 KB |
testcase_16 | WA | - |
testcase_17 | AC | 35 ms
53,400 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 | - |
ソースコード
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))