結果

問題 No.740 幻の木
ユーザー tsunabittsunabit
提出日時 2019-07-03 22:53:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 460 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 75,264 KB
実行使用メモリ 55,880 KB
最終ジャッジ日時 2024-09-17 05:53:01
合計ジャッジ時間 5,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
55,880 KB
testcase_01 AC 133 ms
53,576 KB
testcase_02 AC 137 ms
54,124 KB
testcase_03 AC 135 ms
54,176 KB
testcase_04 AC 134 ms
53,996 KB
testcase_05 AC 133 ms
54,132 KB
testcase_06 AC 138 ms
54,092 KB
testcase_07 AC 133 ms
53,868 KB
testcase_08 AC 135 ms
53,772 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No740 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	int n = sc.nextInt(), m = sc.nextInt(), p = sc.nextInt(), q = sc.nextInt();
    	int mo = 1, c = 0;
    	while(n > 0) {
    		c++;
    		n = n - m;
    		if(p <= mo && mo <= p + q - 1) {
    			n = n - m;
    		}
    		mo = mo < 12? mo + 1 : 1;
    	}
    	System.out.println(c);
    }
}
0