結果

問題 No.219 巨大数の概算
ユーザー 明智重蔵明智重蔵
提出日時 2015-09-19 16:17:21
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 202 ms / 1,500 ms
コード長 2,102 bytes
コンパイル時間 817 ms
コンパイル使用メモリ 116,804 KB
実行使用メモリ 33,492 KB
最終ジャッジ日時 2024-07-18 11:41:24
合計ジャッジ時間 11,804 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
31,432 KB
testcase_01 AC 182 ms
33,108 KB
testcase_02 AC 177 ms
33,232 KB
testcase_03 AC 185 ms
33,224 KB
testcase_04 AC 171 ms
33,228 KB
testcase_05 AC 31 ms
26,548 KB
testcase_06 AC 46 ms
32,836 KB
testcase_07 AC 32 ms
26,672 KB
testcase_08 AC 45 ms
30,788 KB
testcase_09 AC 32 ms
26,912 KB
testcase_10 AC 178 ms
33,472 KB
testcase_11 AC 193 ms
33,492 KB
testcase_12 AC 181 ms
31,556 KB
testcase_13 AC 186 ms
31,428 KB
testcase_14 AC 178 ms
31,064 KB
testcase_15 AC 188 ms
31,304 KB
testcase_16 AC 176 ms
31,176 KB
testcase_17 AC 180 ms
33,220 KB
testcase_18 AC 179 ms
31,168 KB
testcase_19 AC 177 ms
31,176 KB
testcase_20 AC 179 ms
31,172 KB
testcase_21 AC 177 ms
33,208 KB
testcase_22 AC 177 ms
31,180 KB
testcase_23 AC 179 ms
33,220 KB
testcase_24 AC 185 ms
33,216 KB
testcase_25 AC 188 ms
33,224 KB
testcase_26 AC 178 ms
33,232 KB
testcase_27 AC 179 ms
29,000 KB
testcase_28 AC 180 ms
33,084 KB
testcase_29 AC 181 ms
33,212 KB
testcase_30 AC 179 ms
31,424 KB
testcase_31 AC 191 ms
31,172 KB
testcase_32 AC 180 ms
33,336 KB
testcase_33 AC 181 ms
33,340 KB
testcase_34 AC 190 ms
33,096 KB
testcase_35 AC 199 ms
31,432 KB
testcase_36 AC 191 ms
33,352 KB
testcase_37 AC 192 ms
31,300 KB
testcase_38 AC 202 ms
29,124 KB
testcase_39 AC 182 ms
31,300 KB
testcase_40 AC 182 ms
33,096 KB
testcase_41 AC 177 ms
33,472 KB
testcase_42 AC 176 ms
33,272 KB
testcase_43 AC 179 ms
29,512 KB
testcase_44 AC 178 ms
33,212 KB
testcase_45 AC 177 ms
33,092 KB
testcase_46 AC 177 ms
33,096 KB
testcase_47 AC 178 ms
33,472 KB
testcase_48 AC 193 ms
31,300 KB
testcase_49 AC 189 ms
29,508 KB
testcase_50 AC 184 ms
31,172 KB
testcase_51 AC 32 ms
26,528 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;

class Program
{
    static string InputPattern = "Input2";

    static List<string> GetInputList()
    {
        var WillReturn = new List<string>();

        if (InputPattern == "Input1") {
            WillReturn.Add("2");
            WillReturn.Add("2 10");
            WillReturn.Add("9 9");
            //1 0 3
            //3 8 8
            //9の9乗は387420489です。これは9桁の数(10の8乗オーダー)であり、
            //最上位の数は3、上から2番目の数は8です。
            //上から3番目の数は7ですが、切り捨てます。 
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    struct ABInfoDef
    {
        internal int A;
        internal int B;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();

        var ABInfoList = new List<ABInfoDef>();
        foreach (string EachStr in InputList.Skip(1)) {
            int[] wkArr = EachStr.Split(' ').Select(X => int.Parse(X)).ToArray();
            ABInfoList.Add(new ABInfoDef() { A = wkArr[0], B = wkArr[1] });
        }

        ABInfoList.ForEach(Solve);
    }

    struct ResultInfoDef
    {
        internal double X;
        internal double Y;
        internal double Z;
    }

    static void Solve(ABInfoDef pABInfo)
    {
        double Sahen = pABInfo.B * Math.Log10(pABInfo.A);

        //丸め誤差が一番小さい値を解とする
        var ResultInfoList = new List<ResultInfoDef>();

        for (double X = 1; X <= 9; X++) {
            for (double Y = 0; Y <= 9; Y++) {
                double Z = Sahen - Math.Log10(X + Y / 10);

                ResultInfoList.Add(new ResultInfoDef() { X = X, Y = Y, Z = Z });
            }
        }

        ResultInfoDef Answer =
            ResultInfoList.OrderBy(A => Math.Abs(A.Z - Math.Truncate(A.Z))).First();
        Console.WriteLine("{0} {1} {2}", Answer.X, Answer.Y, Math.Round(Answer.Z));
    }
}
0