結果

問題 No.804 野菜が苦手
ユーザー practikovatpractikovat
提出日時 2019-05-22 15:42:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 4,343 ms
コンパイル使用メモリ 74,464 KB
実行使用メモリ 54,240 KB
最終ジャッジ日時 2024-09-17 09:33:07
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,240 KB
testcase_01 AC 136 ms
54,092 KB
testcase_02 WA -
testcase_03 AC 136 ms
53,836 KB
testcase_04 AC 137 ms
54,056 KB
testcase_05 AC 135 ms
53,992 KB
testcase_06 AC 135 ms
53,904 KB
testcase_07 AC 136 ms
54,116 KB
testcase_08 WA -
testcase_09 AC 137 ms
53,888 KB
testcase_10 AC 135 ms
54,100 KB
testcase_11 AC 136 ms
54,012 KB
testcase_12 AC 135 ms
54,096 KB
testcase_13 AC 137 ms
54,140 KB
testcase_14 AC 135 ms
53,960 KB
testcase_15 AC 138 ms
54,140 KB
testcase_16 AC 136 ms
53,900 KB
testcase_17 AC 136 ms
53,964 KB
testcase_18 AC 136 ms
53,864 KB
testcase_19 AC 137 ms
53,864 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