結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 518 ms
77,056 KB
testcase_01 AC 48 ms
54,016 KB
testcase_02 AC 48 ms
53,632 KB
testcase_03 AC 48 ms
53,760 KB
testcase_04 AC 49 ms
53,760 KB
testcase_05 AC 57 ms
61,440 KB
testcase_06 AC 58 ms
61,312 KB
testcase_07 AC 48 ms
54,272 KB
testcase_08 AC 79 ms
66,816 KB
testcase_09 AC 48 ms
58,112 KB
testcase_10 AC 557 ms
77,056 KB
testcase_11 AC 478 ms
77,056 KB
testcase_12 AC 72 ms
66,816 KB
testcase_13 AC 76 ms
68,224 KB
testcase_14 AC 406 ms
77,056 KB
testcase_15 AC 47 ms
53,504 KB
testcase_16 AC 43 ms
51,968 KB
testcase_17 AC 48 ms
54,016 KB
testcase_18 AC 376 ms
77,056 KB
testcase_19 AC 77 ms
67,968 KB
testcase_20 AC 308 ms
76,800 KB
testcase_21 AC 519 ms
76,800 KB
testcase_22 AC 74 ms
68,096 KB
testcase_23 AC 45 ms
57,856 KB
testcase_24 AC 75 ms
68,224 KB
testcase_25 AC 71 ms
66,944 KB
testcase_26 AC 147 ms
77,056 KB
testcase_27 AC 177 ms
76,800 KB
testcase_28 AC 293 ms
76,800 KB
testcase_29 AC 156 ms
76,672 KB
testcase_30 AC 517 ms
77,056 KB
testcase_31 AC 73 ms
67,712 KB
testcase_32 AC 46 ms
57,728 KB
testcase_33 AC 76 ms
68,096 KB
testcase_34 AC 99 ms
73,984 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
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