結果

問題 No.804 野菜が苦手
ユーザー eagleeagle
提出日時 2022-06-16 14:19:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,092 KB
最終ジャッジ日時 2024-10-06 12:06:05
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,856 KB
testcase_01 AC 135 ms
53,900 KB
testcase_02 AC 132 ms
54,068 KB
testcase_03 AC 129 ms
53,760 KB
testcase_04 AC 117 ms
53,840 KB
testcase_05 AC 108 ms
52,904 KB
testcase_06 AC 119 ms
53,796 KB
testcase_07 AC 112 ms
52,716 KB
testcase_08 AC 121 ms
54,032 KB
testcase_09 AC 123 ms
53,804 KB
testcase_10 AC 126 ms
53,844 KB
testcase_11 AC 131 ms
53,924 KB
testcase_12 AC 108 ms
52,720 KB
testcase_13 AC 127 ms
53,904 KB
testcase_14 AC 126 ms
53,816 KB
testcase_15 AC 129 ms
53,984 KB
testcase_16 AC 135 ms
53,872 KB
testcase_17 AC 124 ms
53,636 KB
testcase_18 AC 129 ms
54,092 KB
testcase_19 AC 120 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		//野菜の数
		int A = sc.nextInt();
		//肉の数
		int B = sc.nextInt();
		//食べる肉の倍数
		int C = sc.nextInt();
		//一日の食べれる量
		int D = sc.nextInt();
		int ans = 0;
		for(int i = A; i > 0; i--) {
			if(B >= i * C) {
				int eat = i + i * C;
				if(D >= eat) {
					ans = i;
					break;
				}
			}
		}
		System.out.println(ans);
	}
}
0