結果

問題 No.129 お年玉(2)
ユーザー mbanmban
提出日時 2017-01-12 16:48:47
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,465 ms / 5,000 ms
コード長 2,113 bytes
コンパイル時間 2,592 ms
コンパイル使用メモリ 105,856 KB
実行使用メモリ 398,976 KB
最終ジャッジ日時 2024-05-05 23:15:37
合計ジャッジ時間 36,072 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
42,496 KB
testcase_01 AC 1,392 ms
398,976 KB
testcase_02 AC 27 ms
17,792 KB
testcase_03 AC 25 ms
17,664 KB
testcase_04 AC 25 ms
17,792 KB
testcase_05 AC 576 ms
181,888 KB
testcase_06 AC 882 ms
247,680 KB
testcase_07 AC 1,099 ms
322,048 KB
testcase_08 AC 741 ms
219,648 KB
testcase_09 AC 999 ms
285,056 KB
testcase_10 AC 1,112 ms
332,544 KB
testcase_11 AC 749 ms
213,760 KB
testcase_12 AC 989 ms
257,792 KB
testcase_13 AC 1,022 ms
276,224 KB
testcase_14 AC 921 ms
262,528 KB
testcase_15 AC 773 ms
225,024 KB
testcase_16 AC 864 ms
246,016 KB
testcase_17 AC 1,057 ms
313,216 KB
testcase_18 AC 987 ms
286,080 KB
testcase_19 AC 1,073 ms
315,776 KB
testcase_20 AC 1,073 ms
311,936 KB
testcase_21 AC 1,378 ms
390,784 KB
testcase_22 AC 781 ms
221,056 KB
testcase_23 AC 1,163 ms
342,272 KB
testcase_24 AC 1,126 ms
329,216 KB
testcase_25 AC 742 ms
214,656 KB
testcase_26 AC 757 ms
217,984 KB
testcase_27 AC 734 ms
213,632 KB
testcase_28 AC 1,456 ms
394,112 KB
testcase_29 AC 29 ms
17,920 KB
testcase_30 AC 26 ms
17,920 KB
testcase_31 AC 26 ms
17,920 KB
testcase_32 AC 26 ms
17,920 KB
testcase_33 AC 36 ms
21,632 KB
testcase_34 AC 30 ms
18,944 KB
testcase_35 AC 36 ms
20,992 KB
testcase_36 AC 36 ms
21,376 KB
testcase_37 AC 42 ms
23,424 KB
testcase_38 AC 180 ms
69,760 KB
testcase_39 AC 250 ms
85,888 KB
testcase_40 AC 672 ms
204,544 KB
testcase_41 AC 429 ms
142,336 KB
testcase_42 AC 203 ms
74,240 KB
testcase_43 AC 203 ms
73,344 KB
testcase_44 AC 1,465 ms
396,032 KB
testcase_45 AC 134 ms
51,328 KB
testcase_46 AC 306 ms
97,664 KB
testcase_47 AC 1,283 ms
384,128 KB
testcase_48 AC 775 ms
227,072 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;

class Program
{
    static private Magatro M = new Magatro();
    static private void Main(string[]args)
    {
        M.Scan();
        M.Solve();
    }
}

public class Scanner
{
    private string[] S;
    private int Index;
    private char Separator;

    public Scanner(char separator = ' ')
    {
        Index = 0;
        Separator = separator;
    }

    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    }

    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}

public class Magatro
{
    private long N;
    private int M;
    private const int Mod = 1000000000;
    public void Scan()
    {
        Scanner sc = new Scanner();
        N = sc.NextLong()/1000;
        M = sc.NextInt();
    }

    public void Solve()
    {
        N %= M;
        Console.WriteLine(Conbination());
    }
    private long Conbination()
    {
        List<int>[] TryAngle = new List<int>[M + 1];
        TryAngle[0] = new List<int>();
        TryAngle[0].Add(1);
        for(int i = 1; i <= M; i++)
        {
            TryAngle[i] = new List<int>();
            for(int j = 0; j < TryAngle[i - 1].Count+1; j++)
            {
                if (j == 0||j==TryAngle[i-1].Count)
                {
                    TryAngle[i].Add(1);
                }
                else
                {
                    TryAngle[i].Add((TryAngle[i - 1][j - 1] + TryAngle[i - 1][j])%Mod);
                }
            }
        }
        return TryAngle[M][(int)N];
    }
}
0