AtCoderのABC    次のABCの問題へ    前のABCの問題へ

ABC078-C HSI


問題へのリンク


C#のソース

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("1 1");
            //3800
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("10 2");
            //18400
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("100 5");
            //608000
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

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

        long[] wkArr = InputList[0].Split(' ').Select(pX => long.Parse(pX)).ToArray();

        long N = wkArr[0];
        long M = wkArr[1];

        long Bekijyou = 1;
        for (long I = 1; I <= M; I++) {
            Bekijyou *= 2;
        }

        long Answer = (100 * (N - M) + 1900 * M) * Bekijyou;
        Console.WriteLine(Answer);
    }
}


解説

1回のPostでのACの確率を求め、
その逆数が、ACに必要なPost数の期待値になるので
1回のPostでの時間を掛けてます。