結果

問題 No.75 回数の期待値の問題
ユーザー NoNo
提出日時 2015-06-23 00:16:22
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,033 ms / 5,000 ms
コード長 1,298 bytes
コンパイル時間 3,831 ms
コンパイル使用メモリ 112,880 KB
実行使用メモリ 67,156 KB
最終ジャッジ日時 2024-07-07 16:46:22
合計ジャッジ時間 22,826 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 885 ms
67,024 KB
testcase_01 AC 1,012 ms
67,152 KB
testcase_02 AC 1,028 ms
67,124 KB
testcase_03 AC 916 ms
46,976 KB
testcase_04 AC 1,033 ms
67,152 KB
testcase_05 AC 982 ms
67,156 KB
testcase_06 AC 964 ms
67,040 KB
testcase_07 AC 896 ms
46,848 KB
testcase_08 AC 902 ms
46,080 KB
testcase_09 AC 889 ms
45,568 KB
testcase_10 AC 896 ms
44,928 KB
testcase_11 AC 929 ms
44,032 KB
testcase_12 AC 850 ms
34,944 KB
testcase_13 AC 833 ms
34,432 KB
testcase_14 AC 837 ms
34,304 KB
testcase_15 AC 844 ms
32,256 KB
testcase_16 AC 742 ms
22,528 KB
testcase_17 AC 722 ms
20,608 KB
testcase_18 AC 723 ms
20,864 KB
testcase_19 AC 720 ms
20,736 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;
using System.Text;
using System.Threading.Tasks;

namespace foryuki
{
    class Program
    {
        static void Main(string[] args)
        {
            int n = int.Parse(Console.ReadLine());
            Random r = new Random();
            int cnt = 0;
            int m = 0;
            var l = new List<int>();

            for (int i = 0; i < 30000000; i++)
            {
                cnt++;
                m += r.Next(1, 7);

                if (m > n)
                {
                    m = 0;
                }
                else if (m == n)
                {
                    l.Add(cnt);
                    m = 0;
                    cnt = 0;
                }
            }
            Console.WriteLine(l.Average());
            Console.ReadLine();
        }

        //-------------------------------------------------------------

        static int[] ConvertStringArrayToIntArray(string[] array)
        {
            return Array.ConvertAll(array, str => int.Parse(str));
        }

        static List<int> ConvertStringArrayToIntList(string[] str)
        {
            var list = new List<int>();
            foreach (var c in str) list.Add(int.Parse(c));
            return list;
        }
    }
}
0