結果

問題 No.65 回数の期待値の練習
ユーザー 明智重蔵明智重蔵
提出日時 2015-09-12 11:27:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 2,963 ms / 5,000 ms
コード長 2,418 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 108,160 KB
実行使用メモリ 232,852 KB
最終ジャッジ日時 2024-07-19 06:15:55
合計ジャッジ時間 7,676 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,688 KB
testcase_01 AC 28 ms
18,816 KB
testcase_02 AC 23 ms
18,944 KB
testcase_03 AC 23 ms
18,688 KB
testcase_04 AC 23 ms
18,944 KB
testcase_05 AC 23 ms
18,944 KB
testcase_06 AC 24 ms
18,816 KB
testcase_07 AC 24 ms
19,072 KB
testcase_08 AC 24 ms
19,328 KB
testcase_09 AC 26 ms
19,712 KB
testcase_10 AC 28 ms
20,352 KB
testcase_11 AC 33 ms
21,764 KB
testcase_12 AC 43 ms
23,424 KB
testcase_13 AC 64 ms
25,728 KB
testcase_14 AC 106 ms
29,056 KB
testcase_15 AC 185 ms
36,608 KB
testcase_16 AC 344 ms
49,032 KB
testcase_17 AC 694 ms
73,504 KB
testcase_18 AC 1,415 ms
134,388 KB
testcase_19 AC 2,963 ms
232,852 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 = "Input5";

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

        if (InputPattern == "Input1") {
            WillReturn.Add("1");
            //1
        }
        else if (InputPattern == "Input2") {
            WillReturn.Add("2");
            //1.16667
        }
        else if (InputPattern == "Input3") {
            WillReturn.Add("3");
            //1.36111
        }
        else if (InputPattern == "Input4") {
            WillReturn.Add("7");
            //2.52163
        }
        else {
            string wkStr;
            while ((wkStr = Console.ReadLine()) != null) WillReturn.Add(wkStr);
        }
        return WillReturn;
    }

    static void Main()
    {
        List<string> InputList = GetInputList();
        int K = int.Parse(InputList[0]);

        List<int[]> NumList = ExecDFS(K);

        decimal Kitaiti = 0;

        foreach (int[] EachArr in NumList) {
            decimal Bunbo = 1;
            for (int I = 1; I <= EachArr.Length; I++) Bunbo *= 6;
            decimal Bunsi = 1;

            Kitaiti += EachArr.Length * Bunsi / Bunbo;
        }
        Console.WriteLine(Kitaiti);
    }

    //階乗を求める
    static decimal DeriveKaijyou(int pN)
    {
        decimal WillReturn = 1;
        for (int I = 2; I <= pN; I++) {
            WillReturn *= I;
        }
        return WillReturn;
    }

    struct JyoutaiDef
    {
        internal List<int> NumList;
    }

    //合計がKになるまでの、サイコロの目の組み合わせを列挙
    static List<int[]> ExecDFS(int pK)
    {
        var WillReturn = new List<int[]>();

        var stk = new Stack<JyoutaiDef>();
        JyoutaiDef WillPush;
        for (int I = 1; I <= 6; I++) {
            WillPush.NumList = new List<int>() { I };
            stk.Push(WillPush);
        }

        while (stk.Count > 0) {
            JyoutaiDef Popped = stk.Pop();

            //クリア判定
            if (Popped.NumList.Sum() >= pK) {
                WillReturn.Add(Popped.NumList.ToArray());
                continue;
            }

            for (int I = 1; I <= 6; I++) {
                WillPush.NumList = new List<int>(Popped.NumList) { I };
                stk.Push(WillPush);
            }
        }
        return WillReturn;
    }
}
0