結果
問題 | No.1731 Product of Subsequence |
ユーザー | Lê Hoàng Ngô |
提出日時 | 2024-06-28 23:55:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,876 bytes |
コンパイル時間 | 2,241 ms |
コンパイル使用メモリ | 181,200 KB |
実行使用メモリ | 168,960 KB |
最終ジャッジ日時 | 2024-06-28 23:55:37 |
合計ジャッジ時間 | 16,104 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,242 ms
157,440 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 42 ms
8,320 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1,405 ms
168,448 KB |
testcase_11 | AC | 1,196 ms
145,664 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 15 ms
7,168 KB |
testcase_14 | AC | 1,054 ms
128,256 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1,131 ms
133,504 KB |
testcase_19 | AC | 19 ms
7,168 KB |
testcase_20 | AC | 893 ms
109,312 KB |
testcase_21 | AC | 1,413 ms
168,960 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | WA | - |
testcase_24 | AC | 16 ms
7,040 KB |
testcase_25 | AC | 7 ms
5,376 KB |
testcase_26 | AC | 209 ms
32,256 KB |
testcase_27 | AC | 282 ms
41,472 KB |
testcase_28 | AC | 611 ms
79,360 KB |
testcase_29 | AC | 225 ms
34,048 KB |
testcase_30 | AC | 1,257 ms
167,680 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | WA | - |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 75 ms
16,000 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define all(x) x.begin(),x.end() #define rep(i,a,b) for(int i=a;i<=b;i++) #define rep_r(i,a,b) for(int i=a;i>=b;i--) #define each(a,x) for (auto& x : a) using pi = pair<int,int>; using pl = pair<ll,ll>; using vi = vector<int>; using vl = vector<ll>; #define sz(x) int(x.size()) #define so(x) sort(all(x)) #define so_r(x) sort(all(x),greater<int>()) #define lb lower_bound #define ub upper_bound const char nl = '\n'; int dx[4] = {1,-1,0,0}; int dy[4] = {0,0,1,-1}; int bit_cnt(int x){ return __builtin_popcount(x); } ll bex(ll a, ll b, ll mod = 1e9 + 7){ll res = 1LL; while(b){ if (b&1) res = res * a % mod; a = a * a % mod; b >>= 1;} return res;} template<class t,class u> bool chmax(t&a,u b){if(a<b){a=b;return true;}else return false;} template<class t,class u> bool chmin(t&a,u b){if(b<a){a=b;return true;}else return false;} const int MOD = 1e9+7; const int N = 5e5 + 5; const ll INF = 1e16; int n,k; ll a[2005]; vector<int> fac(int x) { vector<int> f; for (int i = 1; 1LL * i * i <= n; i++){ if (x % i == 0) { f.push_back(i); if (x / i != i) f.push_back(x/i); } } sort(all(f)); return f; } map<ll,ll> dp[2005]; void solve(){ cin >> n >> k; rep(i,1,n) cin >> a[i]; dp[0][1] = 1; rep(i,1,n){ ll G = __gcd(a[i], 1LL * k); each(dp[i-1],p){ ll uoc = p.first; ll g = __gcd(G * uoc, 1LL * k); // choose a[i] dp[i][g] += dp[i-1][uoc]; dp[i][g] %= MOD; // not choose a[i] dp[i][uoc] += dp[i-1][uoc]; dp[i][uoc] %= MOD; } } cout << dp[n][k] << nl; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); int t = 1; // cin >> t; while (t--){ solve(); } }