結果

問題 No.1731 Product of Subsequence
ユーザー nononnonon
提出日時 2024-09-30 18:58:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 493 ms / 2,000 ms
コード長 690 bytes
コンパイル時間 2,843 ms
コンパイル使用メモリ 256,812 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 18:59:05
合計ジャッジ時間 7,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 368 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 16 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 493 ms
6,820 KB
testcase_11 AC 385 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 6 ms
6,816 KB
testcase_14 AC 343 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 376 ms
6,820 KB
testcase_19 AC 6 ms
6,816 KB
testcase_20 AC 283 ms
6,816 KB
testcase_21 AC 489 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 6 ms
6,816 KB
testcase_25 AC 4 ms
6,816 KB
testcase_26 AC 56 ms
6,820 KB
testcase_27 AC 79 ms
6,816 KB
testcase_28 AC 210 ms
6,820 KB
testcase_29 AC 58 ms
6,816 KB
testcase_30 AC 341 ms
6,816 KB
testcase_31 AC 3 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 19 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint = atcoder::modint1000000007;

long long gcd(long long a, long long b) {
    return b == 0 ? a : gcd(b, a % b);
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    long long K;
    cin >> N >> K;
    map<long long, mint> dp;
    bool fn = false;
    dp[1] = 1;
    while (N--) {
        auto ep = dp;
        long long A;
        cin >> A;
        if (A % K != 0) fn = true;
        A = gcd(A, K);
        for (auto [key, val] : dp) {
            ep[gcd(key * A, K)] += val;
        }
        dp = ep;
    }
    if (!fn && K == 1) dp[K]--;
    cout << dp[K].val() << endl;
}
0