結果

問題 No.1731 Product of Subsequence
ユーザー ああいいああいい
提出日時 2022-03-16 17:39:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 984 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 87,680 KB
最終ジャッジ日時 2024-11-08 05:21:07
合計ジャッジ時間 11,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 801 ms
84,352 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 57 ms
53,376 KB
testcase_03 AC 47 ms
53,376 KB
testcase_04 AC 46 ms
53,760 KB
testcase_05 AC 64 ms
64,384 KB
testcase_06 AC 62 ms
64,256 KB
testcase_07 AC 53 ms
59,008 KB
testcase_08 AC 112 ms
76,800 KB
testcase_09 AC 49 ms
59,264 KB
testcase_10 AC 984 ms
87,168 KB
testcase_11 AC 807 ms
84,992 KB
testcase_12 AC 75 ms
70,656 KB
testcase_13 AC 107 ms
76,928 KB
testcase_14 AC 745 ms
82,944 KB
testcase_15 AC 49 ms
53,376 KB
testcase_16 AC 42 ms
51,840 KB
testcase_17 AC 52 ms
53,504 KB
testcase_18 AC 814 ms
82,688 KB
testcase_19 AC 105 ms
76,928 KB
testcase_20 AC 673 ms
80,640 KB
testcase_21 AC 966 ms
87,680 KB
testcase_22 AC 83 ms
71,296 KB
testcase_23 AC 48 ms
59,648 KB
testcase_24 AC 108 ms
77,056 KB
testcase_25 AC 100 ms
76,672 KB
testcase_26 AC 223 ms
77,312 KB
testcase_27 AC 281 ms
77,056 KB
testcase_28 AC 486 ms
78,848 KB
testcase_29 AC 231 ms
77,312 KB
testcase_30 AC 779 ms
83,456 KB
testcase_31 AC 82 ms
71,552 KB
testcase_32 AC 48 ms
58,752 KB
testcase_33 AC 83 ms
71,296 KB
testcase_34 AC 149 ms
76,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))

def gcd(a,b):
    while True:
        r = a % b
        a = b
        b = r
        if r == 0:return a
A = [gcd(a,K) for a in A]
P = 10 ** 9 + 7

import sys
if K == 1:
    print((pow(2,N,P)-1)%P)
    exit()
from collections import defaultdict
dp = defaultdict(int)
dp[1] = 1
for a in A:
    nx = defaultdict(int)
    for i in dp:
        nx[gcd(i * a,K)] += dp[i]
    for k in dp:
        nx[k] += dp[k]
    for k in nx:
        nx[k] %= P
    dp = nx
print(dp[K])
0