結果

問題 No.1532 Different Products
ユーザー fumofumofunifumofumofuni
提出日時 2022-01-17 16:43:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,337 bytes
コンパイル時間 2,457 ms
コンパイル使用メモリ 207,908 KB
実行使用メモリ 199,708 KB
最終ジャッジ日時 2024-09-27 12:19:53
合計ジャッジ時間 132,336 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 485 ms
39,728 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,948 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 5 ms
6,944 KB
testcase_09 AC 83 ms
13,056 KB
testcase_10 AC 635 ms
46,668 KB
testcase_11 AC 446 ms
35,524 KB
testcase_12 AC 1,916 ms
110,176 KB
testcase_13 AC 796 ms
53,648 KB
testcase_14 AC 3,173 ms
164,676 KB
testcase_15 AC 8 ms
6,940 KB
testcase_16 AC 571 ms
44,904 KB
testcase_17 AC 453 ms
34,948 KB
testcase_18 AC 259 ms
25,068 KB
testcase_19 AC 1,861 ms
106,968 KB
testcase_20 AC 3,177 ms
167,584 KB
testcase_21 AC 874 ms
61,232 KB
testcase_22 AC 982 ms
63,976 KB
testcase_23 AC 373 ms
31,452 KB
testcase_24 AC 2,890 ms
156,452 KB
testcase_25 AC 1,528 ms
94,328 KB
testcase_26 AC 104 ms
14,720 KB
testcase_27 AC 1,292 ms
79,872 KB
testcase_28 AC 917 ms
63,032 KB
testcase_29 AC 905 ms
61,636 KB
testcase_30 AC 1,847 ms
106,520 KB
testcase_31 AC 1,898 ms
107,256 KB
testcase_32 AC 2,257 ms
121,956 KB
testcase_33 AC 1,607 ms
95,848 KB
testcase_34 AC 2,802 ms
145,804 KB
testcase_35 AC 2,191 ms
120,952 KB
testcase_36 AC 2,772 ms
143,584 KB
testcase_37 AC 515 ms
43,008 KB
testcase_38 AC 2,945 ms
151,836 KB
testcase_39 AC 2,586 ms
136,688 KB
testcase_40 AC 2,650 ms
139,376 KB
testcase_41 AC 3,735 ms
190,756 KB
testcase_42 AC 3,162 ms
171,620 KB
testcase_43 AC 3,444 ms
178,792 KB
testcase_44 AC 3,819 ms
195,480 KB
testcase_45 AC 3,913 ms
196,536 KB
testcase_46 AC 3,749 ms
188,332 KB
testcase_47 TLE -
testcase_48 AC 3,922 ms
196,344 KB
testcase_49 AC 3,975 ms
196,992 KB
testcase_50 AC 3,990 ms
195,500 KB
testcase_51 TLE -
testcase_52 AC 3,883 ms
192,908 KB
testcase_53 AC 3,944 ms
198,740 KB
testcase_54 AC 3,862 ms
193,028 KB
testcase_55 AC 3,949 ms
197,036 KB
testcase_56 AC 3,700 ms
188,252 KB
testcase_57 AC 3,726 ms
189,728 KB
testcase_58 AC 3,861 ms
194,868 KB
testcase_59 AC 3,575 ms
183,012 KB
testcase_60 AC 3,927 ms
199,708 KB
testcase_61 AC 2 ms
6,940 KB
testcase_62 AC 2 ms
6,940 KB
testcase_63 AC 3,889 ms
196,768 KB
権限があれば一括ダウンロードができます

ソースコード

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;
}
unordered_map<ll,ll> memo[210];
ll dp(ll n,ll k){
    if(k==0)return 0;
    if(n==0)return 1;
    if(memo[n].count(k))return memo[n][k];
    ll ans=dp(n-1,k)+dp(n-1,k/n);
    memo[n][k]=ans;
    return ans;
}
int main(){
    ll N,K;cin >> N >> K;
    cout << dp(N,K)-1 <<endl;
}   
0