結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,800 KB
testcase_01 AC 135 ms
54,160 KB
testcase_02 AC 139 ms
53,912 KB
testcase_03 AC 134 ms
54,052 KB
testcase_04 AC 133 ms
53,728 KB
testcase_05 AC 135 ms
54,024 KB
testcase_06 AC 139 ms
54,072 KB
testcase_07 AC 134 ms
53,984 KB
testcase_08 AC 134 ms
54,168 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(), 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