結果

問題 No.129 お年玉(2)
ユーザー しらゆきしらゆき
提出日時 2016-01-05 20:31:36
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,687 bytes
コンパイル時間 1,912 ms
コンパイル使用メモリ 114,452 KB
実行使用メモリ 742,216 KB
最終ジャッジ日時 2024-05-05 22:55:08
合計ジャッジ時間 35,957 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
60,168 KB
testcase_01 MLE -
testcase_02 AC 22 ms
25,688 KB
testcase_03 AC 22 ms
23,648 KB
testcase_04 AC 22 ms
23,756 KB
testcase_05 AC 574 ms
242,780 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 754 ms
301,768 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 721 ms
290,540 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 782 ms
311,592 KB
testcase_16 MLE -
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 759 ms
304,624 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 725 ms
291,868 KB
testcase_26 AC 743 ms
299,148 KB
testcase_27 AC 720 ms
291,824 KB
testcase_28 MLE -
testcase_29 AC 20 ms
25,672 KB
testcase_30 AC 20 ms
24,024 KB
testcase_31 AC 21 ms
23,796 KB
testcase_32 AC 20 ms
23,524 KB
testcase_33 AC 28 ms
29,096 KB
testcase_34 AC 23 ms
24,420 KB
testcase_35 AC 28 ms
26,636 KB
testcase_36 AC 28 ms
27,012 KB
testcase_37 AC 32 ms
28,560 KB
testcase_38 AC 162 ms
101,464 KB
testcase_39 AC 250 ms
134,184 KB
testcase_40 AC 680 ms
277,448 KB
testcase_41 AC 417 ms
192,192 KB
testcase_42 AC 182 ms
112,144 KB
testcase_43 AC 190 ms
76,288 KB
testcase_44 MLE -
testcase_45 AC 100 ms
70,276 KB
testcase_46 AC 271 ms
142,732 KB
testcase_47 MLE -
testcase_48 AC 791 ms
314,920 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.Linq;
using System.Collections.Generic;

class Program
{
    static void Main()
    {
        var n = rl();
        var m = rl();
        var mod = 1000000000;

        n /= 1000;
        n = n % m;

        var pas = new long[m + 1, m + 1];
        for(int i = 0; i < m + 1; i++)
        {
            for(int j = 0; j < m + 1; j++)
            {
                if (j == 0 || i == j)
                {
                    pas[i, j] = 1;
                    continue;
                }
                if (j > i) continue;
                pas[i, j] = pas[i, j] = (pas[i - 1, j - 1] + pas[i - 1, j]) % mod;
            }
        }

        Console.WriteLine(pas[m, n]);
    }

    #region Scan
    static int ri() { return int.Parse(Console.ReadLine()); }
    static long rl() { return long.Parse(Console.ReadLine()); }
    static double rd() { return double.Parse(Console.ReadLine()); }
    static string rs() { return Console.ReadLine(); }
    static int[] ria() { return Console.ReadLine().Trim().Split().Select(int.Parse).ToArray(); }
    static long[] rla() { return Console.ReadLine().Trim().Split().Select(long.Parse).ToArray(); }
    static double[] rda() { return Console.ReadLine().Trim().Split().Select(double.Parse).ToArray(); }
    static string[] rsa() { return Console.ReadLine().Trim().Split(); }
    static void mul(out int a, out int b) { var arr = ria(); a = arr[0]; b = arr[1]; }
    public void mul(out int a, out int b, out int c) { var arr = ria(); a = arr[0]; b = arr[1]; c = arr[2]; }
    public void mul(out int a, out int b, out int c, out int d) { var arr = ria(); a = arr[0]; b = arr[1]; c = arr[2]; d = arr[3]; }
    #endregion
}
0