結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 AC 0 ms
5,376 KB
testcase_03 AC 0 ms
5,376 KB
testcase_04 AC 0 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 0 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |     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 0;
    else if ((now>=p)&&(now<=p+q-1))
        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