結果
問題 | No.804 野菜が苦手 |
ユーザー | kazapyon27 |
提出日時 | 2019-03-30 00:32:31 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 3,238 ms |
コンパイル使用メモリ | 74,600 KB |
実行使用メモリ | 52,064 KB |
最終ジャッジ日時 | 2024-11-07 01:35:07 |
合計ジャッジ時間 | 5,204 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 58 ms
49,852 KB |
testcase_01 | WA | - |
testcase_02 | AC | 57 ms
50,180 KB |
testcase_03 | AC | 60 ms
49,928 KB |
testcase_04 | AC | 56 ms
49,932 KB |
testcase_05 | AC | 58 ms
49,924 KB |
testcase_06 | WA | - |
testcase_07 | AC | 57 ms
50,132 KB |
testcase_08 | AC | 58 ms
50,160 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 58 ms
50,116 KB |
testcase_15 | AC | 55 ms
49,996 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 56 ms
50,048 KB |
testcase_19 | AC | 56 ms
49,828 KB |
ソースコード
/*No.804 野菜が苦手*/ import java.io.*; public class No804{ public static void main(String[] args) { try(BufferedReader input =new BufferedReader(new InputStreamReader(System.in))){ String[]s_input=input.readLine().split(" "); byte ordered_vegetables=Byte.parseByte(s_input[0]); byte ordered_meat=Byte.parseByte(s_input[1]); byte multiple=Byte.parseByte(s_input[2]); byte capacity=Byte.parseByte(s_input[3]); while(ordered_vegetables+ordered_vegetables*multiple>capacity){ ordered_vegetables--; } System.out.println(ordered_vegetables); }catch(Exception e){ e.printStackTrace(); } } }