結果

問題 No.129 お年玉(2)
ユーザー nanophoto12nanophoto12
提出日時 2015-02-01 23:18:53
言語 C#(csc)
(csc 3.9.0)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,045 bytes
コンパイル時間 2,522 ms
コンパイル使用メモリ 112,436 KB
実行使用メモリ 680,592 KB
最終ジャッジ日時 2024-12-20 09:26:38
合計ジャッジ時間 35,893 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
61,748 KB
testcase_01 MLE -
testcase_02 AC 31 ms
27,116 KB
testcase_03 AC 30 ms
25,216 KB
testcase_04 AC 30 ms
25,128 KB
testcase_05 AC 538 ms
339,764 KB
testcase_06 AC 908 ms
493,212 KB
testcase_07 MLE -
testcase_08 AC 759 ms
428,816 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 719 ms
415,180 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 785 ms
442,608 KB
testcase_16 AC 925 ms
487,664 KB
testcase_17 MLE -
testcase_18 MLE -
testcase_19 MLE -
testcase_20 MLE -
testcase_21 MLE -
testcase_22 AC 759 ms
434,988 KB
testcase_23 MLE -
testcase_24 MLE -
testcase_25 AC 724 ms
417,640 KB
testcase_26 AC 749 ms
425,580 KB
testcase_27 AC 712 ms
415,540 KB
testcase_28 MLE -
testcase_29 AC 35 ms
25,124 KB
testcase_30 AC 30 ms
25,132 KB
testcase_31 AC 29 ms
25,208 KB
testcase_32 AC 31 ms
27,024 KB
testcase_33 AC 29 ms
22,832 KB
testcase_34 AC 32 ms
23,732 KB
testcase_35 AC 35 ms
28,252 KB
testcase_36 AC 39 ms
28,740 KB
testcase_37 AC 41 ms
30,140 KB
testcase_38 AC 160 ms
108,192 KB
testcase_39 AC 234 ms
153,364 KB
testcase_40 AC 655 ms
392,736 KB
testcase_41 AC 389 ms
251,524 KB
testcase_42 AC 181 ms
118,888 KB
testcase_43 AC 176 ms
116,492 KB
testcase_44 MLE -
testcase_45 AC 111 ms
75,728 KB
testcase_46 AC 260 ms
167,772 KB
testcase_47 MLE -
testcase_48 AC 797 ms
448,236 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;

namespace YukiCoder2
{
    class Program
    {

        static void Main(string[] args)
        {
            ulong n = Console.ReadLine().Split(' ').Select(ulong.Parse).ToArray()[0];
            ulong m = Console.ReadLine().Split(' ').Select(ulong.Parse).ToArray()[0];
            ulong rest = (n /1000L) % m;
            if (rest == 0)
            {
                Console.WriteLine("1");
                return;
            }
            var buffer = new ulong[m+1,m+1];
            for (ulong i = 0; i < m+1; i++)
            {
                buffer[i, 0] = 1;
                buffer[i, i] = 1;
            }
            for (ulong i = 1; i < m+1; i++)
            {
                for (ulong k = 1; k < i; k++)
                {
                    buffer[i, k] = buffer[i - 1, k - 1] + buffer[i - 1, k];
                    buffer[i, k] %= 1000000000;
                }
            }
            Console.WriteLine(buffer[m,rest]);
        }
    }
}
0