結果

問題 No.639 An Ordinary Sequence
ユーザー square1001square1001
提出日時 2017-08-16 16:40:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 12 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 65,044 KB
実行使用メモリ 11,300 KB
最終ジャッジ日時 2024-06-10 12:42:18
合計ジャッジ時間 1,174 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
11,240 KB
testcase_01 AC 12 ms
11,224 KB
testcase_02 AC 5 ms
11,264 KB
testcase_03 AC 5 ms
11,260 KB
testcase_04 AC 6 ms
11,104 KB
testcase_05 AC 5 ms
11,172 KB
testcase_06 AC 5 ms
11,300 KB
testcase_07 AC 6 ms
11,236 KB
testcase_08 AC 6 ms
11,236 KB
testcase_09 AC 5 ms
11,112 KB
testcase_10 AC 5 ms
11,288 KB
testcase_11 AC 5 ms
11,264 KB
testcase_12 AC 5 ms
11,260 KB
testcase_13 AC 6 ms
11,264 KB
testcase_14 AC 7 ms
11,172 KB
testcase_15 AC 8 ms
11,264 KB
testcase_16 AC 11 ms
11,264 KB
testcase_17 AC 6 ms
11,236 KB
testcase_18 AC 11 ms
11,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
long long n, a[1000009];
long long solve(long long x) {
	if (x <= 1000000) return a[x];
	return solve(x / 3) + solve(x / 5);
}
int main() {
	a[0] = 1;
	for (int i = 1; i <= 1000000; i++) a[i] = a[i / 3] + a[i / 5];
	cin >> n;
	cout << solve(n) << endl;
	return 0;
}
0