結果

問題 No.1731 Product of Subsequence
ユーザー とりゐとりゐ
提出日時 2021-08-23 08:47:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-11-08 04:22:22
合計ジャッジ時間 11,233 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 790 ms
78,720 KB
testcase_01 AC 43 ms
53,760 KB
testcase_02 AC 44 ms
53,376 KB
testcase_03 AC 44 ms
53,504 KB
testcase_04 AC 44 ms
53,888 KB
testcase_05 AC 49 ms
60,928 KB
testcase_06 AC 50 ms
60,800 KB
testcase_07 AC 44 ms
54,144 KB
testcase_08 AC 69 ms
65,408 KB
testcase_09 AC 58 ms
65,408 KB
testcase_10 AC 973 ms
79,104 KB
testcase_11 AC 848 ms
78,720 KB
testcase_12 AC 66 ms
65,152 KB
testcase_13 AC 99 ms
76,672 KB
testcase_14 AC 731 ms
77,952 KB
testcase_15 AC 47 ms
53,248 KB
testcase_16 AC 47 ms
53,632 KB
testcase_17 AC 47 ms
53,632 KB
testcase_18 AC 670 ms
79,360 KB
testcase_19 AC 97 ms
76,544 KB
testcase_20 AC 548 ms
78,464 KB
testcase_21 AC 960 ms
78,976 KB
testcase_22 AC 69 ms
66,688 KB
testcase_23 AC 66 ms
65,152 KB
testcase_24 AC 77 ms
66,304 KB
testcase_25 AC 69 ms
65,152 KB
testcase_26 AC 230 ms
76,544 KB
testcase_27 AC 278 ms
76,672 KB
testcase_28 AC 485 ms
77,056 KB
testcase_29 AC 237 ms
76,672 KB
testcase_30 AC 810 ms
78,720 KB
testcase_31 AC 67 ms
66,560 KB
testcase_32 AC 63 ms
64,768 KB
testcase_33 AC 66 ms
66,560 KB
testcase_34 AC 145 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
from math import*
from collections import*
mod=10**9+7
d=defaultdict(int)
d[1]=1
for i in a:
  d2=d.copy()
  for j in d2:
    m=gcd(k,i*j)
    d[m]=(d2[j]+d[m])%mod
print(d[k]%mod-(k==1))
0