結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 289 ms
39,832 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 59 ms
13,184 KB
testcase_10 AC 374 ms
46,540 KB
testcase_11 AC 256 ms
35,532 KB
testcase_12 AC 1,224 ms
110,072 KB
testcase_13 AC 508 ms
53,764 KB
testcase_14 AC 2,107 ms
164,612 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 365 ms
44,860 KB
testcase_17 AC 259 ms
34,908 KB
testcase_18 AC 154 ms
25,268 KB
testcase_19 AC 1,244 ms
107,052 KB
testcase_20 AC 2,110 ms
167,672 KB
testcase_21 AC 541 ms
61,140 KB
testcase_22 AC 631 ms
63,996 KB
testcase_23 AC 212 ms
31,524 KB
testcase_24 AC 1,912 ms
156,460 KB
testcase_25 AC 987 ms
94,548 KB
testcase_26 AC 72 ms
14,592 KB
testcase_27 AC 816 ms
79,908 KB
testcase_28 AC 569 ms
63,116 KB
testcase_29 AC 585 ms
61,688 KB
testcase_30 AC 1,245 ms
106,668 KB
testcase_31 AC 1,209 ms
107,168 KB
testcase_32 AC 1,451 ms
121,964 KB
testcase_33 AC 1,060 ms
95,956 KB
testcase_34 AC 1,784 ms
145,872 KB
testcase_35 AC 1,427 ms
120,904 KB
testcase_36 AC 1,835 ms
143,520 KB
testcase_37 AC 355 ms
43,008 KB
testcase_38 AC 1,910 ms
151,740 KB
testcase_39 AC 1,666 ms
136,712 KB
testcase_40 AC 1,687 ms
139,452 KB
testcase_41 AC 2,475 ms
190,828 KB
testcase_42 AC 2,151 ms
171,688 KB
testcase_43 AC 2,290 ms
178,908 KB
testcase_44 AC 2,486 ms
195,620 KB
testcase_45 AC 2,595 ms
197,020 KB
testcase_46 AC 2,448 ms
188,344 KB
testcase_47 AC 2,642 ms
199,248 KB
testcase_48 AC 3,171 ms
196,860 KB
testcase_49 AC 2,578 ms
197,120 KB
testcase_50 AC 2,594 ms
195,432 KB
testcase_51 AC 2,636 ms
198,996 KB
testcase_52 AC 2,515 ms
193,308 KB
testcase_53 AC 2,620 ms
199,296 KB
testcase_54 AC 2,513 ms
193,352 KB
testcase_55 AC 2,600 ms
197,288 KB
testcase_56 AC 2,428 ms
188,188 KB
testcase_57 AC 2,447 ms
189,800 KB
testcase_58 AC 2,519 ms
195,380 KB
testcase_59 AC 2,365 ms
183,196 KB
testcase_60 AC 2,610 ms
199,612 KB
testcase_61 AC 1 ms
6,948 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 2,547 ms
197,160 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