結果

問題 No.1731 Product of Subsequence
ユーザー hiro71687khiro71687k
提出日時 2023-03-31 00:44:40
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,093 ms / 2,000 ms
コード長 1,239 bytes
コンパイル時間 4,283 ms
コンパイル使用メモリ 272,492 KB
実行使用メモリ 169,216 KB
最終ジャッジ日時 2024-09-22 08:44:10
合計ジャッジ時間 14,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 938 ms
157,696 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 32 ms
8,320 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1,093 ms
168,704 KB
testcase_11 AC 937 ms
145,792 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 15 ms
7,424 KB
testcase_14 AC 830 ms
128,384 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 894 ms
133,632 KB
testcase_19 AC 17 ms
7,296 KB
testcase_20 AC 718 ms
109,440 KB
testcase_21 AC 1,093 ms
169,216 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 14 ms
7,168 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 162 ms
32,256 KB
testcase_27 AC 223 ms
41,600 KB
testcase_28 AC 482 ms
79,360 KB
testcase_29 AC 173 ms
34,176 KB
testcase_30 AC 894 ms
167,936 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 4 ms
6,940 KB
testcase_34 AC 58 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll=long long;
using ld=long double;
ld pie=3.141592653589793;
ll mod=1000000007;
ll inf=999999999999999999;
ll gcd(ll a, ll b) {
	a = abs(a); b = abs(b);
	if (a < b)swap(a, b);
	while (b) {
	    ll r=a%b;
        a=b;
	    b=r;
	}
	return a;
}
ll modpow(ll x, ll n) {
  x = x%mod;
  if(n==0) return 1;  //再帰の終了条件

  else if(n%2==1) {
    return (x*modpow(x, n-1))%mod;  //nが奇数ならnを1ずらす
  }
  else return modpow((x*x)%mod, n/2)%mod;  //nが偶数ならnが半分になる
}
int main(){
    ll n,k;
    cin >> n >> k;
    if (k==1)
    {
        cout << (modpow(2,n)+mod-1)%mod << endl;
        return 0;
    }
    
    vector<ll>a(n);
    for (ll i = 0; i < n; i++)
    {
        cin >> a[i];
        a[i]=gcd(k,a[i]);
    }
    vector<map<ll,ll>>dp(n);
    dp[0][1]=1;
    ll x=gcd(k,a[0]);
    dp[0][x]+=1;
    for (ll i = 1; i < n; i++)
    {
        for(auto v:dp[i-1]){
            dp[i][v.first]+=v.second;
            dp[i][v.first]%=mod;
            ll z=v.first*a[i];
            z=gcd(k,z);
            dp[i][z]+=v.second;
            dp[i][z]%=mod;
        }
    }
    cout << dp[n-1][k] << endl;
}
0