結果

問題 No.1532 Different Products
ユーザー fumofumofunifumofumofuni
提出日時 2022-01-17 16:27:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,319 bytes
コンパイル時間 2,244 ms
コンパイル使用メモリ 210,036 KB
実行使用メモリ 405,760 KB
最終ジャッジ日時 2024-11-23 12:48:47
合計ジャッジ時間 192,443 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 911 ms
61,184 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
197,504 KB
testcase_04 AC 2 ms
12,068 KB
testcase_05 AC 1 ms
170,624 KB
testcase_06 AC 2 ms
12,068 KB
testcase_07 AC 5 ms
197,760 KB
testcase_08 AC 10 ms
10,496 KB
testcase_09 AC 199 ms
24,612 KB
testcase_10 AC 1,200 ms
72,320 KB
testcase_11 AC 833 ms
246,528 KB
testcase_12 AC 3,413 ms
391,040 KB
testcase_13 AC 1,509 ms
83,108 KB
testcase_14 TLE -
testcase_15 AC 15 ms
13,636 KB
testcase_16 AC 1,030 ms
69,120 KB
testcase_17 AC 814 ms
56,612 KB
testcase_18 AC 514 ms
40,448 KB
testcase_19 AC 3,265 ms
387,456 KB
testcase_20 TLE -
testcase_21 AC 1,574 ms
281,856 KB
testcase_22 AC 1,782 ms
97,408 KB
testcase_23 AC 748 ms
234,496 KB
testcase_24 TLE -
testcase_25 AC 2,796 ms
319,872 KB
testcase_26 AC 225 ms
25,216 KB
testcase_27 AC 2,365 ms
124,200 KB
testcase_28 AC 1,688 ms
273,024 KB
testcase_29 AC 1,541 ms
95,140 KB
testcase_30 AC 3,208 ms
388,736 KB
testcase_31 AC 3,288 ms
387,072 KB
testcase_32 AC 3,827 ms
182,560 KB
testcase_33 AC 2,805 ms
328,576 KB
testcase_34 TLE -
testcase_35 AC 3,801 ms
405,760 KB
testcase_36 TLE -
testcase_37 AC 887 ms
243,072 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 2 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define rep(i,n) for(ll i=0;i<n;i++)
#define repl(i,l,r) for(ll i=(l);i<(r);i++)
#define per(i,n) for(ll i=(n)-1;i>=0;i--)
#define perl(i,r,l) for(ll i=r-1;i>=l;i--)
#define fi first
#define se second
#define pb push_back
#define ins insert
#define pqueue(x) priority_queue<x,vector<x>,greater<x>>
#define all(x) (x).begin(),(x).end()
#define CST(x) cout<<fixed<<setprecision(x)
#define vtpl(x,y,z) vector<tuple<x,y,z>>
#define rev(x) reverse(x);
using ll=long long;
using vl=vector<ll>;
using vvl=vector<vector<ll>>;
using pl=pair<ll,ll>;
using vpl=vector<pl>;
using vvpl=vector<vpl>;
const ll MOD=1000000007;
const ll MOD9=998244353;
const int inf=1e9+10;
const ll INF=4e18;
const ll dy[9]={0,1,-1,0,1,1,-1,-1,0};
const ll dx[9]={1,0,0,-1,1,-1,1,-1,0};
template<class T> inline bool chmin(T& a, T b) {
    if (a > b) {
        a = b;
        return true;
    }
    return false;
}
template<class T> inline bool chmax(T& a, T b) {
    if (a < b) {
        a = b;
        return true;
    }
    return false;
}
map<pl,ll> mp;
ll dp(ll n,ll k){
    if(k==0)return 0;
    if(n==0)return 1;
    if(mp.count({n,k}))return mp[{n,k}];
    ll ans=dp(n-1,k)+dp(n-1,k/n);
    mp[{n,k}]=ans;
    return ans;
}
int main(){
    ll N,K;cin >> N >> K;
    cout << dp(N,K)-1 << endl;
}   
0