結果

問題 No.75 回数の期待値の問題
ユーザー NoNo
提出日時 2015-06-23 00:19:32
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 958 ms / 5,000 ms
コード長 1,266 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 112,320 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-07 16:47:14
合計ジャッジ時間 19,993 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 844 ms
76,160 KB
testcase_01 AC 899 ms
79,232 KB
testcase_02 AC 946 ms
75,932 KB
testcase_03 AC 843 ms
55,588 KB
testcase_04 AC 958 ms
75,500 KB
testcase_05 AC 937 ms
75,508 KB
testcase_06 AC 900 ms
74,108 KB
testcase_07 AC 838 ms
58,032 KB
testcase_08 AC 846 ms
55,600 KB
testcase_09 AC 833 ms
55,860 KB
testcase_10 AC 814 ms
56,764 KB
testcase_11 AC 801 ms
53,548 KB
testcase_12 AC 792 ms
41,276 KB
testcase_13 AC 788 ms
42,668 KB
testcase_14 AC 772 ms
37,948 KB
testcase_15 AC 753 ms
37,188 KB
testcase_16 AC 683 ms
30,444 KB
testcase_17 AC 675 ms
26,796 KB
testcase_18 AC 669 ms
28,692 KB
testcase_19 AC 666 ms
26,892 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());
        }

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

        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