結果

問題 No.639 An Ordinary Sequence
ユーザー tetsuzuki1115tetsuzuki1115
提出日時 2018-01-27 04:15:31
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 679 bytes
コンパイル時間 646 ms
コンパイル使用メモリ 80,300 KB
実行使用メモリ 7,380 KB
最終ジャッジ日時 2024-06-10 12:50:46
合計ジャッジ時間 1,472 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
7,336 KB
testcase_01 AC 11 ms
7,220 KB
testcase_02 AC 5 ms
7,292 KB
testcase_03 AC 4 ms
7,328 KB
testcase_04 AC 4 ms
7,196 KB
testcase_05 AC 4 ms
7,220 KB
testcase_06 AC 4 ms
7,344 KB
testcase_07 AC 4 ms
7,192 KB
testcase_08 AC 5 ms
7,252 KB
testcase_09 AC 5 ms
7,256 KB
testcase_10 AC 5 ms
7,208 KB
testcase_11 AC 4 ms
7,244 KB
testcase_12 AC 5 ms
7,304 KB
testcase_13 AC 4 ms
7,296 KB
testcase_14 AC 5 ms
7,224 KB
testcase_15 AC 6 ms
7,320 KB
testcase_16 AC 11 ms
7,220 KB
testcase_17 AC 5 ms
7,380 KB
testcase_18 AC 11 ms
7,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cstring>
#include <math.h>
#include <cmath>
#include <limits.h>
#include <map>
#include <set>
#include <queue>
#include <algorithm>
#include <functional>
#include <stdio.h>
using namespace std;

long long MOD = 1000000007;

int M[1000000] = {0};

long long func( long long i ) {
    
    if ( i < 1000000 ) { return M[i]; }
    
    long long a = func( i/3 ) + func( i/5 );
    
    return a;
}


int main() {
        
    long long N;
    cin >> N;
    
    M[0] = 1;
    for ( int i = 1; i < 1000000; i++ ) {
        M[i] = M[i/3] + M[i/5];
    }
    
    cout << func(N) << endl;
    
    
    
    return 0;
}
0