結果

問題 No.236 鴛鴦茶
ユーザー apprecapprec
提出日時 2015-07-06 11:36:39
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 1,344 bytes
コンパイル時間 939 ms
コンパイル使用メモリ 103,808 KB
実行使用メモリ 23,552 KB
最終ジャッジ日時 2024-06-28 12:51:50
合計ジャッジ時間 3,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
23,424 KB
testcase_01 AC 69 ms
23,296 KB
testcase_02 AC 69 ms
23,040 KB
testcase_03 AC 68 ms
23,168 KB
testcase_04 AC 68 ms
23,168 KB
testcase_05 AC 68 ms
23,168 KB
testcase_06 AC 68 ms
23,168 KB
testcase_07 AC 68 ms
23,424 KB
testcase_08 AC 68 ms
23,296 KB
testcase_09 AC 69 ms
23,552 KB
testcase_10 AC 67 ms
23,168 KB
testcase_11 AC 69 ms
23,296 KB
testcase_12 AC 68 ms
23,424 KB
testcase_13 AC 69 ms
22,912 KB
testcase_14 AC 68 ms
23,296 KB
testcase_15 AC 68 ms
23,168 KB
testcase_16 AC 68 ms
22,912 KB
testcase_17 AC 68 ms
23,168 KB
testcase_18 AC 67 ms
23,424 KB
testcase_19 AC 68 ms
23,168 KB
testcase_20 AC 68 ms
23,040 KB
testcase_21 AC 68 ms
23,424 KB
testcase_22 AC 69 ms
23,424 KB
testcase_23 AC 68 ms
23,168 KB
testcase_24 AC 69 ms
23,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.IO;
using System.Text.RegularExpressions;

namespace YukiCoder.No236 {
    class CoffeeTea {
        public static void Main() {
            var scn = new Scanner(Console.In);
            int[] a = scn.NextIntAry();
            int A = a[0], B = a[1], X = a[2], Y = a[3];

            double productMax = 0;
            if (A*Y >= B*X) { // coffee <= tea
                productMax = X * (A + B) / (double)A;
            } else {// coffee > tea
                productMax =  Y * (B + A) / (double)B;
            }

            Console.WriteLine("{0:F12}", productMax);
        }
    }

    public class Scanner {
        private TextReader tr;

        public Scanner(TextReader tr) {
            this.tr = tr;
        }

        public Scanner(string filePath) {
            this.tr = new StreamReader(filePath);
        }

        private string readLine() {
            return Regex.Replace(tr.ReadLine(), @"\s+", " ").Trim();
        }

        public string NextStr() {
            return readLine();
        }

        public string[] NextStrAry() {
            return readLine().Split(' ');
        }

        public int NextInt() {
            return int.Parse(readLine());
        }

        public int[] NextIntAry() {
            return Array.ConvertAll(readLine().Split(' '), int.Parse);
        }
    }
}
0