結果

問題 No.639 An Ordinary Sequence
ユーザー merom686merom686
提出日時 2018-01-26 22:42:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 459 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 76,900 KB
実行使用メモリ 7,452 KB
最終ジャッジ日時 2024-06-10 12:46:43
合計ジャッジ時間 1,293 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,268 KB
testcase_01 AC 11 ms
7,312 KB
testcase_02 AC 5 ms
7,276 KB
testcase_03 AC 4 ms
7,344 KB
testcase_04 AC 4 ms
7,372 KB
testcase_05 AC 4 ms
7,340 KB
testcase_06 AC 4 ms
7,284 KB
testcase_07 AC 4 ms
7,272 KB
testcase_08 AC 4 ms
7,272 KB
testcase_09 AC 4 ms
7,284 KB
testcase_10 AC 5 ms
7,316 KB
testcase_11 AC 4 ms
7,316 KB
testcase_12 AC 4 ms
7,392 KB
testcase_13 AC 4 ms
7,312 KB
testcase_14 AC 5 ms
7,352 KB
testcase_15 AC 6 ms
7,288 KB
testcase_16 AC 10 ms
7,452 KB
testcase_17 AC 5 ms
7,288 KB
testcase_18 AC 10 ms
7,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <cmath>
using namespace std;

int m = 1 << 20;
vector<int> p(m);

int64_t dfs(int64_t i) {
    if (i < m) return p[i];
    return dfs(i / 3) + dfs(i / 5);
}

int main() {
    int64_t n;
    cin >> n;

    p[0] = 1;
    for (int i = 1; i < m; i++) {
        p[i] = p[i / 3] + p[i / 5];
    }

    cout << dfs(n) << endl;

    return 0;
}
0