結果

問題 No.1532 Different Products
ユーザー uzzyuzzy
提出日時 2021-06-04 23:12:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,129 ms / 4,000 ms
コード長 988 bytes
コンパイル時間 2,782 ms
コンパイル使用メモリ 190,892 KB
実行使用メモリ 199,612 KB
最終ジャッジ日時 2024-12-20 16:53:33
合計ジャッジ時間 102,066 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 370 ms
39,832 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 4 ms
6,820 KB
testcase_08 AC 5 ms
6,816 KB
testcase_09 AC 71 ms
13,056 KB
testcase_10 AC 518 ms
46,528 KB
testcase_11 AC 310 ms
35,408 KB
testcase_12 AC 1,430 ms
110,068 KB
testcase_13 AC 578 ms
53,636 KB
testcase_14 AC 2,456 ms
164,616 KB
testcase_15 AC 8 ms
6,820 KB
testcase_16 AC 435 ms
44,860 KB
testcase_17 AC 321 ms
34,908 KB
testcase_18 AC 211 ms
25,140 KB
testcase_19 AC 1,402 ms
107,048 KB
testcase_20 AC 2,401 ms
167,548 KB
testcase_21 AC 680 ms
61,136 KB
testcase_22 AC 769 ms
63,996 KB
testcase_23 AC 259 ms
31,520 KB
testcase_24 AC 2,238 ms
156,464 KB
testcase_25 AC 1,159 ms
94,552 KB
testcase_26 AC 82 ms
14,592 KB
testcase_27 AC 948 ms
79,904 KB
testcase_28 AC 667 ms
62,992 KB
testcase_29 AC 735 ms
61,568 KB
testcase_30 AC 1,421 ms
106,792 KB
testcase_31 AC 1,463 ms
107,164 KB
testcase_32 AC 1,689 ms
121,892 KB
testcase_33 AC 1,220 ms
96,060 KB
testcase_34 AC 2,027 ms
145,744 KB
testcase_35 AC 1,661 ms
121,028 KB
testcase_36 AC 1,991 ms
143,264 KB
testcase_37 AC 431 ms
43,008 KB
testcase_38 AC 2,205 ms
151,736 KB
testcase_39 AC 1,960 ms
136,588 KB
testcase_40 AC 1,960 ms
139,404 KB
testcase_41 AC 2,816 ms
190,700 KB
testcase_42 AC 2,528 ms
171,688 KB
testcase_43 AC 2,814 ms
178,780 KB
testcase_44 AC 2,980 ms
195,488 KB
testcase_45 AC 2,991 ms
197,020 KB
testcase_46 AC 2,826 ms
188,348 KB
testcase_47 AC 3,073 ms
199,120 KB
testcase_48 AC 2,941 ms
196,860 KB
testcase_49 AC 2,927 ms
197,032 KB
testcase_50 AC 2,971 ms
195,440 KB
testcase_51 AC 3,015 ms
198,860 KB
testcase_52 AC 2,898 ms
193,312 KB
testcase_53 AC 3,027 ms
199,164 KB
testcase_54 AC 2,917 ms
193,352 KB
testcase_55 AC 3,011 ms
197,036 KB
testcase_56 AC 2,807 ms
188,184 KB
testcase_57 AC 2,866 ms
189,672 KB
testcase_58 AC 2,955 ms
195,252 KB
testcase_59 AC 2,762 ms
182,940 KB
testcase_60 AC 3,129 ms
199,612 KB
testcase_61 AC 2 ms
6,816 KB
testcase_62 AC 2 ms
6,816 KB
testcase_63 AC 3,035 ms
197,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize ("O2")
#pragma GCC target ("avx")
#include<bits/stdc++.h>
//#include<atcoder/all>
//using namespace atcoder;

using namespace std;
typedef long long ll;
#define rep(i, n) for(int i = 0; i < (n); i++)
#define rep1(i, n) for(int i = 1; i <= (n); i++)
#define co(x) cout << (x) << "\n"
#define cosp(x) cout << (x) << " "
#define ce(x) cerr << (x) << "\n"
#define cesp(x) cerr << (x) << " "
#define pb push_back
#define mp make_pair
#define chmin(x, y) x = min(x, y)
#define chmax(x, y) x = max(x, y)
#define Would
#define you
#define please

unordered_map<ll, ll> memo[201];
ll keisan(ll N, ll K) {
	if (N == 0) return 1;
	if (memo[N].find(K) != memo[N].end()) {
		return memo[N][K];
	}
	ll ret = 0;
	if (K >= N) {
		ret += keisan(N - 1, K / N);
	}
	ret += keisan(N - 1, K);

	memo[N][K] = ret;
	return ret;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);


	ll N, K;
	cin >> N >> K;

	ll kotae = keisan(N, K);

	co(kotae - 1);


	Would you please return 0;
}
0