結果

問題 No.639 An Ordinary Sequence
ユーザー weizenweizen
提出日時 2018-03-24 08:45:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 13 ms / 1,000 ms
コード長 470 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 22,912 KB
実行使用メモリ 9,388 KB
最終ジャッジ日時 2024-06-10 12:54:31
合計ジャッジ時間 859 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
9,276 KB
testcase_01 AC 13 ms
9,388 KB
testcase_02 AC 3 ms
9,328 KB
testcase_03 AC 3 ms
9,256 KB
testcase_04 AC 3 ms
9,344 KB
testcase_05 AC 3 ms
9,336 KB
testcase_06 AC 3 ms
9,324 KB
testcase_07 AC 3 ms
9,380 KB
testcase_08 AC 3 ms
9,328 KB
testcase_09 AC 3 ms
9,332 KB
testcase_10 AC 4 ms
9,368 KB
testcase_11 AC 4 ms
9,276 KB
testcase_12 AC 4 ms
9,360 KB
testcase_13 AC 3 ms
9,352 KB
testcase_14 AC 4 ms
9,356 KB
testcase_15 AC 6 ms
9,360 KB
testcase_16 AC 12 ms
9,348 KB
testcase_17 AC 4 ms
9,240 KB
testcase_18 AC 12 ms
9,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%lld",&N);
      |     ~~~~~^~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

#define CACHE_SIZE 1000000 

long long int dp[CACHE_SIZE];

long long int calc (long long int N){
    if(N < CACHE_SIZE){
        if(dp[N] != -1) return dp[N];
        return (dp[N] = calc(N/3)+calc(N/5));
    }else{
        return calc(N/3)+calc(N/5);
    }
}
int main(void){
    // Your code here!
    for(long long int i = 0; i < CACHE_SIZE; i++) dp[i] = -1;
    dp[0]=1;
    long long int N;
    scanf("%lld",&N);
    printf("%lld\n", calc(N));
}
0