結果
問題 | No.44 DPなすごろく |
ユーザー | takatowin |
提出日時 | 2017-01-09 01:37:26 |
言語 | C90 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 254 bytes |
コンパイル時間 | 230 ms |
コンパイル使用メモリ | 22,272 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-10 03:11:53 |
合計ジャッジ時間 | 11,600 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | OLE | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | OLE | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | OLE | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | OLE | - |
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:15:1: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | scanf("%d",&N); | ^~~~~~~~~~~~~~
ソースコード
#include<stdio.h> double temp; void make(int n){ int i,a; if(n==0 || n==1){ puts(""); 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; }