結果
問題 | No.453 製薬会社 |
ユーザー | 37zigen |
提出日時 | 2016-12-04 01:07:57 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 123 ms / 2,000 ms |
コード長 | 816 bytes |
コンパイル時間 | 3,047 ms |
コンパイル使用メモリ | 78,204 KB |
実行使用メモリ | 41,600 KB |
最終ジャッジ日時 | 2024-05-05 17:43:33 |
合計ジャッジ時間 | 5,276 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,508 KB |
testcase_01 | AC | 121 ms
41,388 KB |
testcase_02 | AC | 120 ms
41,544 KB |
testcase_03 | AC | 119 ms
41,196 KB |
testcase_04 | AC | 119 ms
40,496 KB |
testcase_05 | AC | 121 ms
40,988 KB |
testcase_06 | AC | 110 ms
40,860 KB |
testcase_07 | AC | 121 ms
41,600 KB |
testcase_08 | AC | 117 ms
41,340 KB |
testcase_09 | AC | 120 ms
41,316 KB |
testcase_10 | AC | 123 ms
41,308 KB |
testcase_11 | AC | 122 ms
41,336 KB |
testcase_12 | AC | 120 ms
41,472 KB |
ソースコード
package yukicoder; import java.util.*; public class Q453 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); double c = sc.nextDouble(); double d = sc.nextDouble(); /* * 1000x+2000y max 3/4x+2/7y<=c 1/4x+5/7y<=d */ double max = 0; ArrayDeque<Pair> que = new ArrayDeque<>(); que.add(new Pair(0, Math.min(7.0 / 2.0 * c, 7.0 / 5.0 * d))); que.add(new Pair(Math.min(4.0 / 3.0 * c, 4 * d), 0)); que.add(new Pair(4.0 / 13.0 * (5 * c - 2 * d), 7 * (3 * d - c) / 13.0)); while (!que.isEmpty()) { Pair p = que.poll(); if (p.x < 0 || p.y < 0) continue; max = Math.max(max, 1000 * p.x + 2000 * p.y); } System.out.println(max); } static class Pair { double x; double y; public Pair(double x, double y) { this.x = x; this.y = y; } } }