結果
問題 | No.917 Make One With GCD |
ユーザー | snow39 |
提出日時 | 2019-10-25 23:27:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,267 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 105,692 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-13 09:02:57 |
合計ジャッジ時間 | 2,283 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | AC | 9 ms
6,944 KB |
testcase_07 | WA | - |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 2 ms
6,940 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 3 ms
6,940 KB |
testcase_22 | AC | 3 ms
6,944 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
6,944 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 2 ms
6,940 KB |
testcase_29 | AC | 2 ms
6,940 KB |
testcase_30 | AC | 2 ms
6,944 KB |
testcase_31 | AC | 2 ms
6,944 KB |
testcase_32 | AC | 2 ms
6,940 KB |
testcase_33 | AC | 2 ms
6,944 KB |
testcase_34 | AC | 2 ms
6,940 KB |
testcase_35 | AC | 2 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> #include <string> #include <vector> #include <cmath> #include <map> #include <queue> #include <iomanip> #include <set> #include <tuple> #define mkp make_pair #define mkt make_tuple #define rep(i,n) for(int i = 0; i < (n); ++i) using namespace std; typedef long long ll; const ll MOD=1e9+7; ll dp[2][1000010]; ll gcd(ll a,ll b){ return b==0?a:gcd(b,a%b); } void add(ll &a,ll b){ a=(a+b)%MOD; } int main(){ int N; cin>>N; vector<ll> A(N); rep(i,N) cin>>A[i]; map<ll,int> mp; int cnt=1; vector<ll> v; v.push_back(0); for(int i=0;i<N;i++){ for(ll j=1;j*j<=A[i];j++){ if(A[i]%j==0){ if(mp[j]==0){ mp[j]=cnt++; v.push_back(j); } if(mp[A[i]/j]==0){ mp[A[i]/j]=cnt++; v.push_back(A[i]/j); } } } } int t=0; dp[0][0]=1; for(int i=0;i<N;i++){ for(int k=0;k<cnt;k++){ if(dp[t][k]==0) continue; add(dp[1-t][k],dp[t][k]); ll val=v[k]; if(val==0) add(dp[1-t][mp[A[i]]],dp[t][k]); else{ ll z=gcd(val,A[i]); add(dp[1-t][mp[z]],dp[t][k]); } } for(int k=0;k<cnt;k++) dp[t][k]=0; t=1-t; } ll ans=dp[t][mp[1]]; cout<<ans<<endl; return 0; }