結果
問題 | No.473 和と積の和 |
ユーザー | imulan |
提出日時 | 2017-05-17 03:54:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,097 bytes |
コンパイル時間 | 2,053 ms |
コンパイル使用メモリ | 181,908 KB |
実行使用メモリ | 224,160 KB |
最終ジャッジ日時 | 2024-09-17 11:03:32 |
合計ジャッジ時間 | 8,901 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,948 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 1,237 ms
108,672 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 10 ms
6,940 KB |
testcase_24 | AC | 15 ms
6,940 KB |
testcase_25 | TLE | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second using pi = pair<int,int>; using P = pair<pi,int>; int n; ll x; int D; vector<int> d; void factor() { int X=x+1; d.pb(X); for(int i=2; i*i<=X; ++i) { if(X%i==0) { d.pb(i); d.pb(X/i); } } sort(all(d)); d.erase(unique(all(d)),d.end()); D = d.size(); } map<P,int> dp; int f(int rem, int didx, int val) { if(didx==D) return (rem==0 && val==1); if(d[didx]>val) { if(rem==0) return (val==1); return 0; } P p = P(pi(rem,didx),val); if(dp.count(p)) return dp[p]; int ret=0; ll div=1; for(int i=0; i<=rem; ++i) { if(val%div==0) ret += f(rem-i, didx+1, val/div); else break; div *= d[didx]; } dp[p] = ret; return ret; } int main() { cin >>n >>x; factor(); cout << f(n,0,x+1) << endl; return 0; }