結果

問題 No.639 An Ordinary Sequence
ユーザー merom686merom686
提出日時 2018-01-26 22:42:56
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 459 bytes
コンパイル時間 800 ms
コンパイル使用メモリ 73,556 KB
実行使用メモリ 7,380 KB
最終ジャッジ日時 2025-01-02 02:05:06
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 17
権限があれば一括ダウンロードができます

ソースコード

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