結果

問題 No.1731 Product of Subsequence
ユーザー とりゐとりゐ
提出日時 2021-10-18 03:46:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 550 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-11-08 04:23:03
合計ジャッジ時間 7,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
77,080 KB
testcase_01 AC 44 ms
53,888 KB
testcase_02 AC 44 ms
53,760 KB
testcase_03 AC 43 ms
53,632 KB
testcase_04 AC 44 ms
53,760 KB
testcase_05 AC 50 ms
61,184 KB
testcase_06 AC 51 ms
61,696 KB
testcase_07 AC 44 ms
54,016 KB
testcase_08 AC 69 ms
66,560 KB
testcase_09 AC 43 ms
58,496 KB
testcase_10 AC 550 ms
76,972 KB
testcase_11 AC 467 ms
77,056 KB
testcase_12 AC 65 ms
67,968 KB
testcase_13 AC 69 ms
68,608 KB
testcase_14 AC 388 ms
76,928 KB
testcase_15 AC 46 ms
53,760 KB
testcase_16 AC 41 ms
51,584 KB
testcase_17 AC 45 ms
53,888 KB
testcase_18 AC 352 ms
77,312 KB
testcase_19 AC 72 ms
68,992 KB
testcase_20 AC 290 ms
77,016 KB
testcase_21 AC 497 ms
77,056 KB
testcase_22 AC 67 ms
68,480 KB
testcase_23 AC 44 ms
58,240 KB
testcase_24 AC 69 ms
68,608 KB
testcase_25 AC 66 ms
67,456 KB
testcase_26 AC 135 ms
76,928 KB
testcase_27 AC 164 ms
77,132 KB
testcase_28 AC 277 ms
76,788 KB
testcase_29 AC 142 ms
76,672 KB
testcase_30 AC 494 ms
76,800 KB
testcase_31 AC 67 ms
68,608 KB
testcase_32 AC 44 ms
58,368 KB
testcase_33 AC 69 ms
68,608 KB
testcase_34 AC 87 ms
74,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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