結果

問題 No.219 巨大数の概算
ユーザー aketijyuuzouaketijyuuzou
提出日時 2024-10-10 23:37:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 247 ms / 1,500 ms
コード長 2,153 bytes
コンパイル時間 948 ms
コンパイル使用メモリ 113,796 KB
実行使用メモリ 35,524 KB
最終ジャッジ日時 2024-10-10 23:37:25
合計ジャッジ時間 15,824 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 237 ms
31,176 KB
testcase_01 AC 236 ms
33,352 KB
testcase_02 AC 241 ms
31,176 KB
testcase_03 AC 236 ms
31,572 KB
testcase_04 AC 231 ms
33,348 KB
testcase_05 AC 39 ms
26,672 KB
testcase_06 AC 58 ms
30,800 KB
testcase_07 AC 37 ms
26,656 KB
testcase_08 AC 59 ms
32,576 KB
testcase_09 AC 38 ms
26,672 KB
testcase_10 AC 238 ms
33,212 KB
testcase_11 AC 237 ms
33,224 KB
testcase_12 AC 237 ms
31,296 KB
testcase_13 AC 233 ms
35,524 KB
testcase_14 AC 238 ms
31,172 KB
testcase_15 AC 239 ms
31,168 KB
testcase_16 AC 238 ms
31,292 KB
testcase_17 AC 247 ms
31,424 KB
testcase_18 AC 237 ms
33,344 KB
testcase_19 AC 240 ms
31,180 KB
testcase_20 AC 244 ms
31,164 KB
testcase_21 AC 238 ms
29,256 KB
testcase_22 AC 236 ms
29,380 KB
testcase_23 AC 237 ms
31,168 KB
testcase_24 AC 239 ms
31,424 KB
testcase_25 AC 243 ms
31,428 KB
testcase_26 AC 240 ms
33,348 KB
testcase_27 AC 235 ms
31,192 KB
testcase_28 AC 242 ms
33,352 KB
testcase_29 AC 237 ms
33,344 KB
testcase_30 AC 240 ms
31,296 KB
testcase_31 AC 239 ms
31,296 KB
testcase_32 AC 242 ms
33,480 KB
testcase_33 AC 236 ms
29,380 KB
testcase_34 AC 243 ms
33,220 KB
testcase_35 AC 240 ms
35,272 KB
testcase_36 AC 238 ms
29,252 KB
testcase_37 AC 238 ms
33,348 KB
testcase_38 AC 239 ms
31,424 KB
testcase_39 AC 237 ms
31,320 KB
testcase_40 AC 238 ms
35,388 KB
testcase_41 AC 239 ms
33,344 KB
testcase_42 AC 236 ms
31,568 KB
testcase_43 AC 236 ms
31,312 KB
testcase_44 AC 235 ms
31,168 KB
testcase_45 AC 237 ms
33,224 KB
testcase_46 AC 239 ms
31,172 KB
testcase_47 AC 241 ms
33,468 KB
testcase_48 AC 239 ms
33,476 KB
testcase_49 AC 235 ms
31,300 KB
testcase_50 AC 242 ms
31,432 KB
testcase_51 AC 42 ms
28,572 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 = "InputX";

    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);
                if (Math.Round(Z) == 0) continue;

                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