結果

問題 No.1532 Different Products
ユーザー だれだれ
提出日時 2021-06-04 21:06:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,894 ms / 4,000 ms
コード長 1,841 bytes
コンパイル時間 3,518 ms
コンパイル使用メモリ 192,660 KB
実行使用メモリ 199,740 KB
最終ジャッジ日時 2024-09-27 06:00:54
合計ジャッジ時間 128,251 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 488 ms
39,936 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 5 ms
6,940 KB
testcase_09 AC 85 ms
13,056 KB
testcase_10 AC 666 ms
46,648 KB
testcase_11 AC 469 ms
35,640 KB
testcase_12 AC 1,926 ms
110,180 KB
testcase_13 AC 829 ms
53,876 KB
testcase_14 AC 2,999 ms
164,736 KB
testcase_15 AC 7 ms
6,944 KB
testcase_16 AC 564 ms
44,968 KB
testcase_17 AC 445 ms
34,884 KB
testcase_18 AC 265 ms
25,372 KB
testcase_19 AC 1,861 ms
107,168 KB
testcase_20 AC 3,068 ms
167,664 KB
testcase_21 AC 852 ms
61,252 KB
testcase_22 AC 1,013 ms
63,976 KB
testcase_23 AC 370 ms
31,628 KB
testcase_24 AC 2,813 ms
156,576 KB
testcase_25 AC 1,519 ms
94,536 KB
testcase_26 AC 101 ms
14,720 KB
testcase_27 AC 1,240 ms
80,020 KB
testcase_28 AC 893 ms
63,232 KB
testcase_29 AC 891 ms
61,684 KB
testcase_30 AC 1,805 ms
106,792 KB
testcase_31 AC 1,823 ms
107,284 KB
testcase_32 AC 2,085 ms
122,088 KB
testcase_33 AC 1,545 ms
96,080 KB
testcase_34 AC 2,607 ms
145,732 KB
testcase_35 AC 2,074 ms
121,148 KB
testcase_36 AC 2,556 ms
143,384 KB
testcase_37 AC 509 ms
43,008 KB
testcase_38 AC 2,720 ms
151,860 KB
testcase_39 AC 2,369 ms
136,836 KB
testcase_40 AC 2,502 ms
139,572 KB
testcase_41 AC 3,625 ms
190,820 KB
testcase_42 AC 3,165 ms
171,808 KB
testcase_43 AC 3,339 ms
179,028 KB
testcase_44 AC 3,713 ms
195,612 KB
testcase_45 AC 3,744 ms
197,272 KB
testcase_46 AC 3,589 ms
188,464 KB
testcase_47 AC 3,845 ms
199,372 KB
testcase_48 AC 3,762 ms
196,976 KB
testcase_49 AC 3,756 ms
197,244 KB
testcase_50 AC 3,774 ms
195,552 KB
testcase_51 AC 3,778 ms
198,984 KB
testcase_52 AC 3,719 ms
193,684 KB
testcase_53 AC 3,882 ms
199,408 KB
testcase_54 AC 3,705 ms
193,468 KB
testcase_55 AC 3,823 ms
197,280 KB
testcase_56 AC 3,611 ms
188,304 KB
testcase_57 AC 3,637 ms
189,788 KB
testcase_58 AC 3,773 ms
195,496 KB
testcase_59 AC 3,515 ms
183,188 KB
testcase_60 AC 3,894 ms
199,740 KB
testcase_61 AC 2 ms
6,944 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 3,813 ms
197,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <bitset>
#include <cassert>
#include <cmath>
#include <cstdio>
#include <fstream>
#include <functional>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <unordered_set>
using namespace std;
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define GET_MACRO(_1, _2, _3, NAME, ...) NAME
#define _rep(i, n) _rep2(i, 0, n)
#define _rep2(i, a, b) for(int i = (int)(a); i < (int)(b); i++)
#define rep(...) GET_MACRO(__VA_ARGS__, _rep2, _rep)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
using i64 = long long;
template<class T, class U>
bool chmin(T& a, const U& b) { return (b < a) ? (a = b, true) : false; }
template<class T, class U>
bool chmax(T& a, const U& b) { return (b > a) ? (a = b, true) : false; }

template<typename T>istream& operator>>(istream&i,vector<T>&v){rep(j,v.size())i>>v[j];return i;}
template<typename T>string join(vector<T>&v){stringstream s;rep(i,v.size())s<<' '<<v[i];return s.str().substr(1);}
template<typename T>ostream& operator<<(ostream&o,vector<T>&v){if(v.size())o<<join(v);return o;}
template<typename T>string join(vector<vector<T>>&vv){string s="\n";rep(i,vv.size())s+=join(vv[i])+"\n";return s;}
template<typename T>ostream& operator<<(ostream&o,vector<vector<T>>&vv){if(vv.size())o<<join(vv);return o;}

vector<unordered_map<i64, i64>> memo;

i64 solve(int n, i64 k){
    if (memo[n][k]) return memo[n][k];
    if (n == 1) return 2;
    i64 res = 0;
    if (k >= n) res += solve(n - 1, k / n);
    res += solve(n - 1, k);
    return memo[n][k] = res;
}

int main()
{
    int n;
    i64 k;
    cin >> n >> k;
    memo.resize(n + 1);
    cout << solve(n, k) - 1 << endl;
}
0