結果

問題 No.804 野菜が苦手
ユーザー キョウチクキョウチク
提出日時 2022-06-01 10:37:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 3,687 ms
コンパイル使用メモリ 79,592 KB
実行使用メモリ 55,108 KB
最終ジャッジ日時 2024-09-21 01:27:39
合計ジャッジ時間 7,144 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
54,936 KB
testcase_01 AC 132 ms
54,684 KB
testcase_02 AC 147 ms
54,924 KB
testcase_03 AC 141 ms
55,108 KB
testcase_04 AC 146 ms
54,788 KB
testcase_05 AC 143 ms
54,972 KB
testcase_06 AC 160 ms
54,728 KB
testcase_07 AC 156 ms
55,028 KB
testcase_08 AC 131 ms
54,692 KB
testcase_09 AC 126 ms
54,552 KB
testcase_10 AC 132 ms
54,524 KB
testcase_11 AC 159 ms
55,072 KB
testcase_12 AC 148 ms
54,804 KB
testcase_13 AC 154 ms
55,048 KB
testcase_14 AC 144 ms
54,828 KB
testcase_15 AC 152 ms
54,752 KB
testcase_16 AC 147 ms
54,996 KB
testcase_17 AC 141 ms
54,728 KB
testcase_18 AC 131 ms
54,476 KB
testcase_19 AC 157 ms
54,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test12 {
  public static void main(String[] args){
    Scanner sc=new Scanner(System.in);
    String[] line;
    String regex=" ",result="";
    line=sc.nextLine().split(regex);
    int vege=Integer.parseInt(line[0]);
    int meat=Integer.parseInt(line[1]);
    int require=Integer.parseInt(line[2]);
    int capa=Integer.parseInt(line[3]);
    int eaten=0;
    while(true){
      meat-=require;
      vege-=1;
      capa-=require+1;
      if(meat<0||vege<0||capa<0) break;
      eaten++;
    }
    result+=eaten;
    System.out.println(result);
    sc.close();
  }
}
0