結果

問題 No.1731 Product of Subsequence
ユーザー とりゐとりゐ
提出日時 2021-07-29 03:10:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 995 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,360 KB
最終ジャッジ日時 2024-11-08 04:21:28
合計ジャッジ時間 11,232 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 817 ms
78,720 KB
testcase_01 AC 47 ms
53,632 KB
testcase_02 AC 47 ms
54,016 KB
testcase_03 AC 49 ms
54,016 KB
testcase_04 AC 47 ms
53,376 KB
testcase_05 AC 54 ms
60,800 KB
testcase_06 AC 54 ms
61,056 KB
testcase_07 AC 48 ms
53,888 KB
testcase_08 AC 77 ms
65,408 KB
testcase_09 AC 46 ms
57,984 KB
testcase_10 AC 995 ms
78,976 KB
testcase_11 AC 847 ms
78,464 KB
testcase_12 AC 66 ms
65,280 KB
testcase_13 AC 96 ms
76,544 KB
testcase_14 AC 725 ms
78,080 KB
testcase_15 AC 47 ms
53,376 KB
testcase_16 AC 43 ms
51,456 KB
testcase_17 AC 47 ms
53,632 KB
testcase_18 AC 667 ms
79,360 KB
testcase_19 AC 85 ms
76,800 KB
testcase_20 AC 544 ms
78,080 KB
testcase_21 AC 950 ms
79,104 KB
testcase_22 AC 68 ms
66,688 KB
testcase_23 AC 46 ms
58,112 KB
testcase_24 AC 77 ms
65,920 KB
testcase_25 AC 67 ms
65,152 KB
testcase_26 AC 227 ms
76,544 KB
testcase_27 AC 278 ms
76,544 KB
testcase_28 AC 483 ms
77,056 KB
testcase_29 AC 239 ms
76,544 KB
testcase_30 AC 815 ms
78,848 KB
testcase_31 AC 69 ms
66,176 KB
testcase_32 AC 47 ms
57,856 KB
testcase_33 AC 68 ms
66,560 KB
testcase_34 AC 146 ms
76,800 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()
  for j in d2:
    m=math.gcd(k,i*j)
    d[m]=(d2[j]+d[m])%mod
print(d[k]%mod)
0