結果

問題 No.740 幻の木
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-05 21:42:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 473 bytes
コンパイル時間 3,047 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-10-12 12:59:12
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,500 KB
testcase_01 AC 125 ms
41,276 KB
testcase_02 AC 126 ms
41,416 KB
testcase_03 AC 126 ms
41,520 KB
testcase_04 AC 126 ms
41,320 KB
testcase_05 AC 126 ms
41,452 KB
testcase_06 AC 131 ms
41,124 KB
testcase_07 AC 113 ms
40,092 KB
testcase_08 AC 126 ms
40,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int m=scanner.nextInt();
		int p=scanner.nextInt();
		int q=scanner.nextInt();
		
		int mon=0;
		int ans=0;
		while(n>0) {
			mon++;
			if(mon==13) {
				mon=1;
			}
			if(p<=mon&&mon<p+q) {
				n-=2*m;
			}
			else {
				n-=m;
			}
			ans++;
		}
		System.out.println(ans);
	}
}
0