結果
問題 | No.1731 Product of Subsequence |
ユーザー | houren |
提出日時 | 2021-11-05 22:41:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,419 bytes |
コンパイル時間 | 1,988 ms |
コンパイル使用メモリ | 177,080 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-06 13:42:38 |
合計ジャッジ時間 | 3,292 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,816 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 3 ms
6,816 KB |
testcase_08 | WA | - |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 4 ms
6,816 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,820 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 2 ms
6,816 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; const ll MOD = 1000000007; using P = pair<int,int>; #define rep(i, n) for(int i = 0; i < n; i++) #define all(x) (x).begin(),(x).end() int main(){ ll n,k,k2,foc = 0; cin >> n >> k; if(k==1){ ll ans = 1; rep(i,n) ans = ans * 2 % MOD; cout << (ans - 1 + MOD) % MOD << endl; return 0; } k2 = k; vector<vector<ll>> dp; vector<ll> div; vector<int> siz; for(ll i=2;i*i<=k;i++){ if(!(k2%i)){ div.push_back(i); siz.push_back(1); dp.push_back({1}); while(!(k2%i)){ k2 /= i; dp[foc].push_back(0); siz[foc]++; } foc++; } } if(k2!=1){ div.push_back(k2); siz.push_back(2); dp.push_back({1,0}); foc++; } rep(i,n){ ll a; cin >> a; rep(j,foc){ int cnt = 0; while(!(a%div[j])){ cnt++; a /= div[j]; } if(!cnt) continue; for(int k=siz[j]-1;k>=0;k--){ int update = min(k+cnt, siz[j]-1); dp[j][update] = (dp[j][update]+dp[j][k]) % MOD; } } } ll ans = 1; rep(i,foc) ans = ans * dp[i][siz[i]-1] % MOD; cout << ans << endl; return 0; }