結果

問題 No.1731 Product of Subsequence
ユーザー vjudge1vjudge1
提出日時 2024-11-21 09:29:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,024 bytes
コンパイル時間 4,395 ms
コンパイル使用メモリ 232,348 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-21 09:30:49
合計ジャッジ時間 61,851 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2 ms
9,892 KB
testcase_02 AC 2 ms
10,276 KB
testcase_03 TLE -
testcase_04 WA -
testcase_05 AC 2 ms
10,020 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 WA -
testcase_10 TLE -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 AC 2 ms
6,816 KB
testcase_16 WA -
testcase_17 AC 2 ms
6,816 KB
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 WA -
testcase_24 TLE -
testcase_25 AC 308 ms
6,820 KB
testcase_26 WA -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 WA -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 WA -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/extc++.h>

using i64 = long long;

constexpr int P = 1E9 + 7;

inline void Inc(int &x, int y) {
    if ((x += y) >= P) x -= P;
}

int main() {
    std::cin.tie(nullptr) -> sync_with_stdio(false);
    int n, m;
    std::cin >> n >> m;
    
    std::vector<int> a(n);
    for (int i = 0; i < n; i++) {
        std::cin >> a[i];
        a[i] = std::__gcd(a[i], m);
    }
    
    auto lcm = [&](int x, int y) {
        return 1ll * x * y / std::__gcd(x, y);
    };

    int cnt = 0;
    __gnu_pbds::gp_hash_table<int, int> mp;
    std::vector<int> d;
    for (int i = 1; i <= m; i++) {
        if (m % i == 0) {
            mp[i] = cnt++;
            d.push_back(i);
        }
    }
    
    std::vector<int> f(cnt);
    f[0] = 1;
    for (int i = 0; i < n; i++) {
        std::vector<int> nf(cnt);
        for (auto x : d) {
            Inc(nf[mp[std::__gcd(1ll * m, 1ll * x * a[i])]], f[mp[x]]);
            Inc(nf[mp[x]], f[mp[x]]);
        }
        f = nf;
    }
    std::cout << f[cnt - 1];
    return 0;
}
0