結果

問題 No.236 鴛鴦茶
ユーザー nokonokonokonoko
提出日時 2015-07-05 22:34:20
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 2,175 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 107,224 KB
実行使用メモリ 25,764 KB
最終ジャッジ日時 2023-09-10 21:46:57
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
25,732 KB
testcase_01 AC 68 ms
23,680 KB
testcase_02 AC 70 ms
23,728 KB
testcase_03 AC 69 ms
25,756 KB
testcase_04 AC 69 ms
23,808 KB
testcase_05 AC 70 ms
25,756 KB
testcase_06 AC 70 ms
23,752 KB
testcase_07 AC 69 ms
23,740 KB
testcase_08 AC 69 ms
23,796 KB
testcase_09 AC 69 ms
25,652 KB
testcase_10 AC 72 ms
25,764 KB
testcase_11 AC 71 ms
23,808 KB
testcase_12 AC 70 ms
23,704 KB
testcase_13 AC 69 ms
23,680 KB
testcase_14 AC 69 ms
23,744 KB
testcase_15 AC 69 ms
23,704 KB
testcase_16 AC 69 ms
23,700 KB
testcase_17 AC 70 ms
23,748 KB
testcase_18 AC 70 ms
23,780 KB
testcase_19 AC 69 ms
23,724 KB
testcase_20 AC 69 ms
25,760 KB
testcase_21 AC 69 ms
21,716 KB
testcase_22 AC 69 ms
23,792 KB
testcase_23 AC 69 ms
25,660 KB
testcase_24 AC 69 ms
25,716 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.Collections.Generic;
using System.Linq;

namespace YukiCoderNo236
{
    class Program
    {
        static void Main()
        {
            double[] buffer = LIB.IO.R<double>(' ');
            double per1 = buffer[0] * buffer[3];
            double per2 = buffer[1] * buffer[2];
            double ans = 0;
            if (per1 >= per2)
            {
                ans = buffer[2] + buffer[2] * buffer[1] / buffer[0];
            }
            else
            {
                ans = buffer[3] + buffer[3] * buffer[0] / buffer[1];
            }
            LIB.IO.W(ans);
            LIB.IO.WFLUSH();
        }
    }
}
namespace LIB
{
    public class IO
    {
        private const int WMAX = 1000;
        private static string WSTRING = "";
        public static T R<T>()
        {
            return (T)(Convert.ChangeType(R(), typeof(T)));
        }
        public static T[] R<T>(char splitter = ' ')
        {
            return R().Split(splitter).Select(v => UTILITY.PARSE<T>(v)).ToArray();
        }
        public static T[] R<T>(int length)
        {

            T[] ret = new T[length];
            for (int i = 0; i < length; i++)
            {
                ret[i] = R<T>();
            }
            return ret;
        }
        public static T[][] R<T>(int length, char splitter = ' ')
        {
            T[][] ret = new T[length][];
            for (int i = 0; i < length; i++)
            {
                ret[i] = R<T>(splitter);
            }
            return ret;
        }
        private static string R()
        {
            return Console.ReadLine();
        }
        public static void W(object value, bool addLineFeed = true)
        {
            WSTRING += UTILITY.PARSE<string>(value);
            if (addLineFeed == true) { WSTRING += "\n"; }
            if (WSTRING.Count() >= WMAX) { WFLUSH(); }
        }
        public static void WFLUSH()
        {
            Console.Write(WSTRING);
            WSTRING = "";
        }
    }
    public class UTILITY
    {
        public static T PARSE<T>(object value)
        {
            return (T)(Convert.ChangeType(value, typeof(T)));
        }
    }
}
0