結果

問題 No.1731 Product of Subsequence
ユーザー hiro71687khiro71687k
提出日時 2023-03-31 00:43:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 881 bytes
コンパイル時間 4,506 ms
コンパイル使用メモリ 271,512 KB
実行使用メモリ 169,216 KB
最終ジャッジ日時 2024-09-22 08:42:53
合計ジャッジ時間 15,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 954 ms
157,696 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 32 ms
8,320 KB
testcase_09 WA -
testcase_10 AC 1,102 ms
168,576 KB
testcase_11 AC 947 ms
145,920 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 15 ms
7,296 KB
testcase_14 AC 836 ms
128,384 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,940 KB
testcase_18 AC 904 ms
133,632 KB
testcase_19 AC 17 ms
7,296 KB
testcase_20 AC 729 ms
109,440 KB
testcase_21 AC 1,105 ms
169,216 KB
testcase_22 AC 4 ms
6,940 KB
testcase_23 WA -
testcase_24 AC 14 ms
7,168 KB
testcase_25 AC 6 ms
6,944 KB
testcase_26 AC 162 ms
32,256 KB
testcase_27 AC 225 ms
41,600 KB
testcase_28 AC 488 ms
79,360 KB
testcase_29 AC 174 ms
34,176 KB
testcase_30 AC 897 ms
167,936 KB
testcase_31 AC 4 ms
6,944 KB
testcase_32 WA -
testcase_33 AC 4 ms
6,944 KB
testcase_34 AC 58 ms
15,872 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;
}
int main(){
    ll n,k;
    cin >> n >> k;
    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