結果

問題 No.1532 Different Products
ユーザー だれだれ
提出日時 2021-06-04 21:05:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,845 bytes
コンパイル時間 3,631 ms
コンパイル使用メモリ 191,760 KB
実行使用メモリ 376,704 KB
最終ジャッジ日時 2024-11-19 11:15:09
合計ジャッジ時間 196,713 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
12,068 KB
testcase_01 AC 984 ms
241,280 KB
testcase_02 AC 2 ms
12,196 KB
testcase_03 AC 2 ms
13,760 KB
testcase_04 AC 2 ms
12,200 KB
testcase_05 AC 2 ms
13,768 KB
testcase_06 AC 2 ms
12,196 KB
testcase_07 AC 4 ms
13,768 KB
testcase_08 AC 9 ms
209,184 KB
testcase_09 AC 195 ms
23,296 KB
testcase_10 AC 1,262 ms
277,504 KB
testcase_11 AC 872 ms
55,552 KB
testcase_12 AC 3,506 ms
356,224 KB
testcase_13 AC 1,669 ms
81,792 KB
testcase_14 TLE -
testcase_15 AC 13 ms
10,624 KB
testcase_16 AC 1,083 ms
265,344 KB
testcase_17 AC 942 ms
55,296 KB
testcase_18 AC 555 ms
236,800 KB
testcase_19 AC 3,305 ms
158,976 KB
testcase_20 TLE -
testcase_21 AC 1,589 ms
291,712 KB
testcase_22 AC 1,954 ms
97,536 KB
testcase_23 AC 739 ms
247,040 KB
testcase_24 TLE -
testcase_25 AC 3,051 ms
337,664 KB
testcase_26 AC 210 ms
25,216 KB
testcase_27 AC 2,375 ms
323,584 KB
testcase_28 AC 1,766 ms
97,280 KB
testcase_29 AC 1,373 ms
95,264 KB
testcase_30 AC 3,375 ms
158,720 KB
testcase_31 AC 3,519 ms
161,316 KB
testcase_32 TLE -
testcase_33 AC 2,899 ms
146,080 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 AC 790 ms
264,064 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 <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<map<i64, i64>> memo;

i64 solve(int n, i64 k){
    if (memo[n][k]) return memo[n][k];
    if (k == 0) return 0;
    if (n == 1) return 2;
    i64 res = 0;
    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