結果

問題 No.453 製薬会社
ユーザー zimphazimpha
提出日時 2017-04-02 13:24:03
言語 Java19
(openjdk 21)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 2,341 bytes
コンパイル時間 3,921 ms
コンパイル使用メモリ 74,480 KB
実行使用メモリ 49,964 KB
最終ジャッジ日時 2023-09-22 07:31:41
合計ジャッジ時間 3,751 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
49,776 KB
testcase_01 AC 46 ms
49,964 KB
testcase_02 AC 44 ms
49,676 KB
testcase_03 AC 43 ms
49,648 KB
testcase_04 AC 44 ms
49,660 KB
testcase_05 AC 43 ms
49,892 KB
testcase_06 AC 50 ms
49,748 KB
testcase_07 AC 43 ms
49,856 KB
testcase_08 AC 42 ms
49,748 KB
testcase_09 AC 42 ms
49,756 KB
testcase_10 AC 44 ms
49,728 KB
testcase_11 AC 51 ms
49,780 KB
testcase_12 AC 42 ms
49,748 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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());
        }

    }
}

0