結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 0 ms
6,816 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 345 ms
5,376 KB
testcase_03 AC 20 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 79 ms
5,376 KB
testcase_06 AC 0 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 80 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 TLE -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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){
  int i,a;
  if(n==0 || n==1){
    temp+=1;
    return;
  }else
    for(i=1;i<=2;i++)
      make(n-i);
}
int main(void){
int N;
scanf("%d",&N);
make(N);
printf("%.lf\n",temp);
  return 0;
}

0