結果

問題 No.740 幻の木
ユーザー Pump0129Pump0129
提出日時 2018-11-27 23:28:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 924 bytes
コンパイル時間 1,968 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-24 17:33:40
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,520 KB
testcase_01 AC 117 ms
41,384 KB
testcase_02 AC 121 ms
41,240 KB
testcase_03 AC 121 ms
40,952 KB
testcase_04 AC 123 ms
41,652 KB
testcase_05 AC 120 ms
41,112 KB
testcase_06 AC 127 ms
41,720 KB
testcase_07 AC 110 ms
40,192 KB
testcase_08 AC 120 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no740;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int leaf_num = Integer.parseInt(scan.next());
        int leaf_drop_num = Integer.parseInt(scan.next());
        int begin_wind = Integer.parseInt(scan.next());
        int con_wind = Integer.parseInt(scan.next());

        int month_cnt = 0;
        int month = 1;
        int str_wind = 0;

        while (0 < leaf_num) {
            if (begin_wind == month) str_wind = con_wind;

            if (0 < str_wind) leaf_num -= leaf_drop_num * 2;
            else leaf_num -= leaf_drop_num;

            month_cnt += 1;
            month += 1;
            if (0 < str_wind) str_wind -= 1;
            if (month == 13) month = 1;
        }

        scan.close();
        System.out.println(month_cnt);
    }
}
0