結果
問題 | No.2798 Multiple Chain |
ユーザー | aditya jain |
提出日時 | 2024-06-28 22:28:24 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,526 bytes |
コンパイル時間 | 3,146 ms |
コンパイル使用メモリ | 256,688 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 22:28:33 |
合計ジャッジ時間 | 5,918 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 24 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
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 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 24 ms
6,940 KB |
testcase_21 | AC | 23 ms
6,944 KB |
testcase_22 | AC | 24 ms
6,944 KB |
testcase_23 | AC | 24 ms
6,944 KB |
testcase_24 | AC | 24 ms
6,940 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 25 ms
6,944 KB |
testcase_29 | AC | 24 ms
6,940 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 24 ms
6,944 KB |
testcase_33 | WA | - |
testcase_34 | AC | 24 ms
6,940 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 25 ms
6,940 KB |
testcase_52 | AC | 24 ms
6,940 KB |
testcase_53 | AC | 25 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #define mp make_pair #define pb push_back using namespace std; using ll = long long int; template<typename T> ostream& operator+(ostream& out, const vector<T> &vec){ for(const auto &x : vec){ out<<x<<" "; } out<<"\n"; return out; } template<typename T> ostream& operator*(ostream& out, const vector<T> &vec){ for(const auto &x : vec){ out+x; } return out; } template<typename T> istream& operator>>(istream& in, vector<T> &vec){ for(auto &x : vec){ in>>x; } return in; } void solve(){ ll n; cin>>n; vector<int> pf; for(ll p=2;p<=2e6;p++){ ll e = 0; while(n % p == 0){ n /= p; ++e; } if(e > 0) pf.emplace_back(e); } ll sq = sqrtl(n); if(sq * sq == n) pf.emplace_back(2); ++sq; if(sq * sq == n) pf.emplace_back(2); sq -= 2; if(sq * sq == n) pf.emplace_back(2); if(pf.size() == 0){ cout<<"1\n"; return; } sort(pf.begin(), pf.end(), greater<int>()); int maxL = pf[0]; vector<vector<ll>> dp(maxL + 1, vector<ll>(maxL + 1)); dp[0][0] = 1; for(int l=1;l<=maxL;l++){ for(int s=0;s<=maxL;s++){ for(int a=0;s-l*a>=0;a++){ dp[l][s] += dp[l-1][s - l * a]; } } } ll ans = 1; for(auto &e : pf){ ans *= dp[maxL][e]; } cout<<ans<<"\n"; } int main() { ios_base::sync_with_stdio(false); cin.tie(NULL); solve(); }