結果

問題 No.287 場合の数
ユーザー りあんりあん
提出日時 2015-10-09 23:43:44
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 5,000 ms
コード長 3,826 bytes
コンパイル時間 2,496 ms
コンパイル使用メモリ 109,556 KB
実行使用メモリ 22,804 KB
最終ジャッジ日時 2023-08-07 18:55:47
合計ジャッジ時間 5,006 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
22,712 KB
testcase_01 AC 55 ms
20,572 KB
testcase_02 AC 55 ms
20,872 KB
testcase_03 AC 56 ms
20,604 KB
testcase_04 AC 56 ms
20,640 KB
testcase_05 AC 56 ms
18,756 KB
testcase_06 AC 55 ms
22,724 KB
testcase_07 AC 55 ms
20,656 KB
testcase_08 AC 55 ms
20,736 KB
testcase_09 AC 56 ms
20,544 KB
testcase_10 AC 56 ms
20,764 KB
testcase_11 AC 55 ms
20,892 KB
testcase_12 AC 57 ms
20,680 KB
testcase_13 AC 55 ms
20,752 KB
testcase_14 AC 56 ms
22,732 KB
testcase_15 AC 57 ms
22,660 KB
testcase_16 AC 56 ms
20,672 KB
testcase_17 AC 57 ms
20,600 KB
testcase_18 AC 56 ms
20,552 KB
testcase_19 AC 57 ms
20,636 KB
testcase_20 AC 55 ms
20,676 KB
testcase_21 AC 56 ms
20,668 KB
testcase_22 AC 56 ms
22,804 KB
testcase_23 AC 56 ms
22,648 KB
testcase_24 AC 56 ms
20,676 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.IO;
using System.Text;
using System.Numerics;
using System.Globalization;

namespace Solver
{
    class Program
    {
        const int M = 1000000007;
        const double eps = 1e-9;
        static void Main()
        {
            var sw = new System.IO.StreamWriter(Console.OpenStandardOutput()) { AutoFlush = false };
            var sc = new Scan();
            int n = sc.Int;
            var dp = new long[8][];
            for (int i = 0; i < 8; i++)
            {
                dp[i] = new long[n * 6 + 1];
            }
            for (int i = 0; i <= n; i++)
            {
                dp[0][i] = 1;
            }
            for (int i = 1; i < 8; i++)
            {
                for (int j = 0; j <= n * 6; j++)
                {
                    for (int k = 0; k <= Math.Min(j, n); k++)
                    {
                        dp[i][j] += dp[i - 1][j - k];
                    }
                }
            }
            sw.WriteLine(dp[7][n * 6]);
            sw.Flush();
        }
    }
    class Scan
    {
        public int Int { get { return int.Parse(Console.ReadLine().Trim()); } }
        public long Long { get { return long.Parse(Console.ReadLine().Trim()); } }
        public string Str { get { return Console.ReadLine().Trim(); } }
        public int[] IntArr { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); } }
        public int[] IntArrWithSep(char sep) { return Console.ReadLine().Trim().Split(sep).Select(int.Parse).ToArray(); }
        public long[] LongArr { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); } }
        public double[] DoubleArr { get { return Console.ReadLine().Split().Select(double.Parse).ToArray(); } }
        public string[] StrArr { get { return Console.ReadLine().Trim().Split(); } }
        public List<int> IntList { get { return Console.ReadLine().Trim().Split().Select(int.Parse).ToList(); } }
        public List<long> LongList { get { return Console.ReadLine().Trim().Split().Select(long.Parse).ToList(); } }
        public void Multi(out int a, out int b) { var arr = IntArr; a = arr[0]; b = arr[1]; }
        public void Multi(out int a, out int b, out int c) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; }
        public void Multi(out int a, out int b, out int c, out int d) { var arr = IntArr; a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; }
        public void Multi(out int a, out string b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1]; }
        public void Multi(out int a, out int b, out string c) { var arr = StrArr; a = int.Parse(arr[0]); b = int.Parse(arr[1]); c = arr[2]; }
        public void Multi(out int a, out char b) { var arr = StrArr; a = int.Parse(arr[0]); b = arr[1][0]; }
        public void Multi(out long a, out long b) { var arr = LongArr; a = arr[0]; b = arr[1]; }
        public void Multi(out long a, out int b) { var arr = LongArr; a = arr[0]; b = (int)arr[1]; }
        public void Multi(out string a, out string b) { var arr = StrArr; a = arr[0]; b = arr[1]; }
    }
    class _math
    {
        int M;
        const double eps = 1e-9;
        public _math(int M) { this.M = M; }
        public long pow(long a, long b)
        {
            if (b == 0) return 1;
            if (b == 1) return a % M;
            
            long t = pow(a, b / 2);

            if ((b & 1) == 0) return t * t % M;
            else return t * t % M * a % M;
        }
        public long gcd(long a, long b)
        {
            while (b != 0)
            {
                var t = a % b;
                a = b;
                b = t;
            }
            return a;
        }
        public long lcm(int a, int b) { return (a * b) / gcd(a, b); }
    }
}
0