結果
問題 | No.453 製薬会社 |
ユーザー | zimpha |
提出日時 | 2017-04-02 13:24:03 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 48 ms / 2,000 ms |
コード長 | 2,341 bytes |
コンパイル時間 | 2,305 ms |
コンパイル使用メモリ | 77,500 KB |
実行使用メモリ | 37,520 KB |
最終ジャッジ日時 | 2024-07-08 00:03:22 |
合計ジャッジ時間 | 3,097 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
37,356 KB |
testcase_01 | AC | 48 ms
37,028 KB |
testcase_02 | AC | 47 ms
37,268 KB |
testcase_03 | AC | 47 ms
37,408 KB |
testcase_04 | AC | 47 ms
37,028 KB |
testcase_05 | AC | 46 ms
37,520 KB |
testcase_06 | AC | 47 ms
37,212 KB |
testcase_07 | AC | 47 ms
37,272 KB |
testcase_08 | AC | 47 ms
37,360 KB |
testcase_09 | AC | 46 ms
37,120 KB |
testcase_10 | AC | 46 ms
37,356 KB |
testcase_11 | AC | 48 ms
37,296 KB |
testcase_12 | AC | 47 ms
37,472 KB |
ソースコード
import java.io.OutputStream; import java.io.IOException; import java.io.InputStream; import java.io.PrintWriter; import java.util.StringTokenizer; import java.io.IOException; import java.io.BufferedReader; import java.io.InputStreamReader; import java.io.InputStream; /** * Built using CHelper plug-in * Actual solution is at the top * * @author Chiaki.Hoshinomori */ public class Main { public static void main(String[] args) { InputStream inputStream = System.in; OutputStream outputStream = System.out; InputReader in = new InputReader(inputStream); PrintWriter out = new PrintWriter(outputStream); Task453 solver = new Task453(); solver.solve(1, in, out); out.close(); } static class Task453 { public void solve(int testNumber, InputReader in, PrintWriter out) { // 3/4 * x + 2/7 * y <= C // 1/4 * x + 5/7 * y <= D // max z = 1000 * x + 2000 * y double C = in.nextDouble(); double D = in.nextDouble(); double x = (C * 5 / 7 - D * 2 / 7) / (0.75 * 5 / 7 - 0.25 * 2 / 7); double y = (C - x * 0.75) / (2.0 / 7); double ret = 0; if (x > 0 && y > 0) { ret = calc(x, y); } ret = Math.max(ret, calc(Math.min(4 * C / 3, 4 * D), 0)); ret = Math.max(ret, calc(0, Math.min(7 * C / 2, 7 * D / 5))); out.println(ret); } private double calc(double x, double y) { return x * 1000 + y * 2000; } } static class InputReader { public BufferedReader reader; public StringTokenizer tokenizer; public InputReader(InputStream stream) { reader = new BufferedReader(new InputStreamReader(stream), 32768); tokenizer = null; } public String next() { while (tokenizer == null || !tokenizer.hasMoreTokens()) { try { tokenizer = new StringTokenizer(reader.readLine()); } catch (IOException e) { throw new RuntimeException(e); } } return tokenizer.nextToken(); } public double nextDouble() { return Double.parseDouble(next()); } } }