結果

問題 No.44 DPなすごろく
ユーザー takatowintakatowin
提出日時 2017-01-09 01:40:05
言語 C90
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 229 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 8,352 KB
最終ジャッジ日時 2024-05-10 03:12:22
合計ジャッジ時間 12,404 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 253 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 57 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 58 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 4,328 ms
5,376 KB
testcase_15 AC 6 ms
5,376 KB
testcase_16 AC 5 ms
5,376 KB
testcase_17 AC 0 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 643 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:14:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 | scanf("%d",&N);
      | ^~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
double temp;
void make(int n){
  if(n==0 || n==1){
    temp+=1;
    return;
  }else{
      make(n-1);
      make(n-2);
  }
}
int main(void){
int N;
scanf("%d",&N);
make(N);
printf("%.lf\n",temp);
  return 0;
}

0