結果

問題 No.804 野菜が苦手
ユーザー practikovatpractikovat
提出日時 2019-05-22 15:46:38
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 868 bytes
コンパイル時間 3,469 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-09-17 09:33:25
合計ジャッジ時間 7,002 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,020 KB
testcase_01 AC 136 ms
53,724 KB
testcase_02 WA -
testcase_03 AC 134 ms
53,980 KB
testcase_04 AC 130 ms
54,120 KB
testcase_05 AC 133 ms
53,980 KB
testcase_06 AC 133 ms
53,912 KB
testcase_07 AC 131 ms
54,056 KB
testcase_08 WA -
testcase_09 AC 136 ms
54,004 KB
testcase_10 AC 135 ms
54,032 KB
testcase_11 AC 136 ms
53,916 KB
testcase_12 AC 134 ms
54,020 KB
testcase_13 AC 133 ms
54,092 KB
testcase_14 AC 136 ms
54,532 KB
testcase_15 AC 135 ms
54,044 KB
testcase_16 AC 134 ms
53,920 KB
testcase_17 AC 134 ms
54,028 KB
testcase_18 AC 134 ms
53,736 KB
testcase_19 AC 131 ms
54,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class DislikeVegetables {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);
		// Vegetable の個数
		int a = scan.nextInt();
		// Meat の個数
		int b = scan.nextInt();
		// 一つVegetable を消費するのに必要な倍数
		int c = scan.nextInt();
		// 消費できるMaxの量
		int d = scan.nextInt();

		// 終了条件
		// 消費できる量はまだあるが、Vegetableがもうない
		// 消費できる量はまだあるが、Meatがもうない
		// Vegetable、Meatはまだあるが、消費できるMaxを超えている

		for(int i = a; i > 0; i--) {
			// 仮の消費量
			int eatNum = i * c;

			// 消費量が、BよりもDよりも少ない
			if((eatNum <= b) && (eatNum <= d)) {
				System.out.println(i);
				return;
			}
		}

		System.out.println(0);
		return;
	}
}
0