結果

問題 No.453 製薬会社
ユーザー tentententen
提出日時 2023-04-05 19:29:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 2,153 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 89,872 KB
実行使用メモリ 51,844 KB
最終ジャッジ日時 2024-04-10 01:20:16
合計ジャッジ時間 5,539 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
51,624 KB
testcase_01 AC 80 ms
51,740 KB
testcase_02 AC 81 ms
51,808 KB
testcase_03 AC 82 ms
51,444 KB
testcase_04 AC 83 ms
51,480 KB
testcase_05 AC 420 ms
51,668 KB
testcase_06 AC 404 ms
51,796 KB
testcase_07 AC 83 ms
51,780 KB
testcase_08 AC 411 ms
51,820 KB
testcase_09 AC 82 ms
51,844 KB
testcase_10 AC 84 ms
51,684 KB
testcase_11 AC 85 ms
51,712 KB
testcase_12 AC 83 ms
51,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int c = sc.nextInt();
        int d = sc.nextInt();
        double left = 0;
        double right = Math.min(c / 3.0 * 4, d * 4);
        for (int i = 0; i < 1000000; i++) {
            double m1 = (left * 2 + right) / 3;
            double m2 = (left + right * 2) / 3;
            if (getIncome(m1, c, d) < getIncome(m2, c, d)) {
                left = m1;
            } else {
                right = m2;
            }
        }
        System.out.println(new java.math.BigDecimal(getIncome(left, c, d)).toPlainString());
    }
    
    static double getIncome(double a, double c, double d) {
        c -= a * 3 / 4;
        d -= a / 4;
        double b = Math.min(c / 2 * 7, d / 5 * 7);
        return a * 1000 + b * 2000;
    }
    
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0