結果

問題 No.639 An Ordinary Sequence
ユーザー akakimidoriakakimidori
提出日時 2018-08-02 04:57:12
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 1,000 ms
コード長 523 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 24,780 KB
実行使用メモリ 9,424 KB
最終ジャッジ日時 2024-06-10 13:03:14
合計ジャッジ時間 1,156 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,316 KB
testcase_01 AC 11 ms
9,292 KB
testcase_02 AC 4 ms
9,252 KB
testcase_03 AC 3 ms
9,216 KB
testcase_04 AC 4 ms
9,300 KB
testcase_05 AC 4 ms
9,336 KB
testcase_06 AC 3 ms
9,344 KB
testcase_07 AC 4 ms
9,384 KB
testcase_08 AC 4 ms
9,424 KB
testcase_09 AC 5 ms
9,352 KB
testcase_10 AC 4 ms
9,384 KB
testcase_11 AC 4 ms
9,316 KB
testcase_12 AC 4 ms
9,292 KB
testcase_13 AC 4 ms
9,216 KB
testcase_14 AC 4 ms
9,232 KB
testcase_15 AC 5 ms
9,284 KB
testcase_16 AC 10 ms
9,312 KB
testcase_17 AC 3 ms
9,384 KB
testcase_18 AC 9 ms
9,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘run’:
main.c:21:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   21 |   scanf("%lld",&n);
      |   ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
#include<stdlib.h>
#include<math.h>

typedef long long int int64;

#define MAX(a,b) ((a)>(b)?(a):(b))
#define MIN(a,b) ((a)<(b)?(a):(b))
#define ABS(a) ((a)>(0)?(a):-(a))

const int m=1000000;
int64 *a=NULL;

int64 calc(int64 n){
  if(n<=m) return a[n];
  return calc(n/3)+calc(n/5);
}

void run(void){
  int64 n;
  scanf("%lld",&n);
  a=(int64 *)malloc(sizeof(int64)*(m+1));
  a[0]=1;
  int i;
  for(i=1;i<=m;i++) a[i]=a[i/3]+a[i/5];
  printf("%lld\n",calc(n));
}

int main(void){
  run();
  return 0;
}
0