結果

問題 No.269 見栄っ張りの募金活動
ユーザー smz_8110smz_8110
提出日時 2018-08-17 16:55:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 1,266 ms / 5,000 ms
コード長 900 bytes
コンパイル時間 885 ms
コンパイル使用メモリ 115,240 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-07-16 02:07:11
合計ジャッジ時間 4,234 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
24,156 KB
testcase_01 AC 24 ms
24,108 KB
testcase_02 AC 24 ms
26,116 KB
testcase_03 AC 42 ms
24,176 KB
testcase_04 AC 193 ms
32,944 KB
testcase_05 AC 25 ms
23,852 KB
testcase_06 AC 23 ms
21,936 KB
testcase_07 AC 1,266 ms
41,392 KB
testcase_08 AC 24 ms
25,996 KB
testcase_09 AC 23 ms
21,692 KB
testcase_10 AC 23 ms
23,948 KB
testcase_11 AC 33 ms
24,296 KB
testcase_12 AC 24 ms
24,112 KB
testcase_13 AC 63 ms
24,800 KB
testcase_14 AC 25 ms
25,964 KB
testcase_15 AC 49 ms
24,796 KB
testcase_16 AC 22 ms
22,068 KB
testcase_17 AC 23 ms
26,392 KB
testcase_18 AC 325 ms
28,632 KB
testcase_19 AC 66 ms
24,928 KB
testcase_20 AC 25 ms
23,972 KB
testcase_21 AC 25 ms
23,800 KB
testcase_22 AC 46 ms
24,164 KB
testcase_23 AC 26 ms
24,208 KB
testcase_24 AC 26 ms
24,188 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;

class Program
{
    const int A = 1000000007;
    static void Main(string[] args)
    {
        var input = Console.ReadLine().Split(' ');
        var n = int.Parse(input[0]);
        var s = int.Parse(input[1]);
        var k = int.Parse(input[2]);

        int m = s - (n - 1) * n * k / 2;
        int c = 0;
        if (m == 0) { c = 1; }
        else
        {
            for (var l = 1; l <= n && l <= m; l++)
            {
                long[] t = new long[m - l + 2];
                for (var i = 0; i < t.Length; i++) { t[i] = 1; }
                for (var i = 2; i <= l; i++)
                {
                    for (var j = i; j <= m - l; j++)
                    {
                        t[j] = (t[j] + t[j - i]) % A;
                    }
                }
                c = (int)((c + t[m - l]) % A);
            }
        }
        Console.WriteLine(c);
    }
}

0