結果

問題 No.740 幻の木
ユーザー greentea011greentea011
提出日時 2018-10-09 13:44:31
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 23,040 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-20 19:06:30
合計ジャッジ時間 1,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |     scanf("%d %d %d %d",&m,&n,&p,&q);
      |     ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int func(int m,int n,int p,int q,int now) {
    printf("%d %d %d %d %d\n",m,n,p,q,now);
    if (m < 0) return 1;
    else if (m == 0) return 0;
    else if ((now>=p)&&(now<=p+q))
        return func(m-2*n,n,p,q,now%12+1)+1;
    else
        return func(m-n,n,p,q,now%12+1)+1;
}

int main(){
    int m,n,p,q;
    scanf("%d %d %d %d",&m,&n,&p,&q);
    printf("%d\n", func(m,n,p,q,1));
    return 0;
}
0