結果

問題 No.639 An Ordinary Sequence
ユーザー startcppstartcpp
提出日時 2018-01-29 12:50:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 27 ms / 1,000 ms
コード長 508 bytes
コンパイル時間 479 ms
コンパイル使用メモリ 55,624 KB
実行使用メモリ 81,616 KB
最終ジャッジ日時 2024-06-10 12:54:40
合計ジャッジ時間 1,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
81,432 KB
testcase_01 AC 27 ms
81,564 KB
testcase_02 AC 22 ms
81,448 KB
testcase_03 AC 21 ms
81,512 KB
testcase_04 AC 22 ms
81,536 KB
testcase_05 AC 22 ms
81,616 KB
testcase_06 AC 21 ms
81,404 KB
testcase_07 AC 22 ms
81,588 KB
testcase_08 AC 21 ms
81,604 KB
testcase_09 AC 22 ms
81,468 KB
testcase_10 AC 22 ms
81,412 KB
testcase_11 AC 23 ms
81,404 KB
testcase_12 AC 23 ms
81,592 KB
testcase_13 AC 23 ms
81,508 KB
testcase_14 AC 23 ms
81,560 KB
testcase_15 AC 24 ms
81,444 KB
testcase_16 AC 26 ms
81,444 KB
testcase_17 AC 22 ms
81,480 KB
testcase_18 AC 27 ms
81,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//全探索を考えると、分岐する回数は2^Nよりずっと小さいので、小さいnについてメモ化すれば解けそう.
#include <iostream>
#define int long long
using namespace std;

const int SZ = 10000000;
int dp[SZ];

int f(int n) {
	if (n == 0) return 1;
	if (n < SZ && dp[n] != -1) return dp[n];
	int ret = f(n / 3) + f(n / 5);
	if (n < SZ) dp[n] = ret;
	return ret;
}

signed main() {
	int n;
	cin >> n;
	for (int i = 0; i < SZ; i++) dp[i] = -1;
	cout << f(n) << endl;
	return 0;
}
0