結果

問題 No.1532 Different Products
ユーザー ygussanyygussany
提出日時 2021-06-04 21:12:25
言語 C
(gcc 12.3.0)
結果
MLE  
実行時間 -
コード長 771 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 31,988 KB
実行使用メモリ 785,008 KB
最終ジャッジ日時 2024-11-19 11:40:27
合計ジャッジ時間 28,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
18,288 KB
testcase_01 AC 253 ms
393,456 KB
testcase_02 AC 19 ms
73,328 KB
testcase_03 AC 7 ms
26,096 KB
testcase_04 AC 12 ms
45,300 KB
testcase_05 AC 5 ms
14,192 KB
testcase_06 AC 14 ms
49,904 KB
testcase_07 AC 19 ms
73,200 KB
testcase_08 AC 21 ms
80,368 KB
testcase_09 AC 62 ms
162,928 KB
testcase_10 AC 206 ms
326,128 KB
testcase_11 AC 193 ms
287,600 KB
testcase_12 AC 402 ms
510,580 KB
testcase_13 AC 193 ms
295,280 KB
testcase_14 MLE -
testcase_15 AC 22 ms
72,052 KB
testcase_16 MLE -
testcase_17 AC 147 ms
272,116 KB
testcase_18 AC 84 ms
198,260 KB
testcase_19 AC 430 ms
463,088 KB
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 161 ms
350,196 KB
testcase_23 AC 83 ms
213,744 KB
testcase_24 MLE -
testcase_25 MLE -
testcase_26 AC 66 ms
225,388 KB
testcase_27 MLE -
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 MLE -
testcase_34 MLE -
testcase_35 MLE -
testcase_36 MLE -
testcase_37 MLE -
testcase_38 MLE -
testcase_39 MLE -
testcase_40 MLE -
testcase_41 MLE -
testcase_42 MLE -
testcase_43 MLE -
testcase_44 MLE -
testcase_45 MLE -
testcase_46 MLE -
testcase_47 MLE -
testcase_48 MLE -
testcase_49 MLE -
testcase_50 MLE -
testcase_51 MLE -
testcase_52 MLE -
testcase_53 MLE -
testcase_54 MLE -
testcase_55 MLE -
testcase_56 MLE -
testcase_57 MLE -
testcase_58 MLE -
testcase_59 MLE -
testcase_60 MLE -
testcase_61 AC 4 ms
12,144 KB
testcase_62 AC 4 ms
12,012 KB
testcase_63 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

#define THR 500000
long long memo[201][THR + 1];

long long recursion(int N, int K)
{
	if (memo[N][K] >= 0) return memo[N][K];
	else if (N == 1) {
		if (K >= 1) memo[N][K] = 2;
		else memo[N][K] = 0;
		return memo[N][K];
	}
	if (K >= N) memo[N][K] = recursion(N - 1, K) + recursion(N - 1, K / N);
	else memo[N][K] = recursion(N - 1, K);
	return memo[N][K];
}

long long DFS(int N, long long K)
{
	if (N == 1) return (K >= 1)? 2: 0;
	else if (K <= THR) return recursion(N, (int)K);
	else return DFS(N - 1, K) + DFS(N - 1, K / N);
}

int main()
{
	int i, j, N;
	long long K;
	scanf("%d %lld\n", &N, &K);
	for (i = 1; i <= N; i++) for (j = 1, memo[i][0] = 0; j <= THR; j++) memo[i][j] = -1;
	printf("%lld\n", DFS(N, K) - 1);
	fflush(stdout);
	return 0;
}
0