結果

問題 No.129 お年玉(2)
ユーザー bluemeganebluemegane
提出日時 2020-09-07 20:30:17
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 432 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 108,808 KB
実行使用メモリ 43,724 KB
最終ジャッジ日時 2024-05-07 00:07:19
合計ジャッジ時間 7,154 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
19,072 KB
testcase_01 AC 432 ms
43,280 KB
testcase_02 AC 28 ms
18,048 KB
testcase_03 AC 28 ms
18,048 KB
testcase_04 AC 28 ms
18,176 KB
testcase_05 AC 94 ms
22,272 KB
testcase_06 AC 63 ms
22,144 KB
testcase_07 AC 116 ms
35,712 KB
testcase_08 AC 167 ms
43,704 KB
testcase_09 AC 56 ms
22,016 KB
testcase_10 AC 160 ms
43,484 KB
testcase_11 AC 69 ms
22,272 KB
testcase_12 AC 34 ms
18,432 KB
testcase_13 AC 30 ms
18,304 KB
testcase_14 AC 62 ms
22,016 KB
testcase_15 AC 63 ms
22,144 KB
testcase_16 AC 75 ms
22,016 KB
testcase_17 AC 48 ms
22,272 KB
testcase_18 AC 131 ms
41,600 KB
testcase_19 AC 251 ms
43,548 KB
testcase_20 AC 89 ms
22,272 KB
testcase_21 AC 53 ms
22,016 KB
testcase_22 AC 78 ms
22,272 KB
testcase_23 AC 141 ms
41,984 KB
testcase_24 AC 291 ms
43,352 KB
testcase_25 AC 65 ms
22,144 KB
testcase_26 AC 98 ms
26,624 KB
testcase_27 AC 89 ms
22,144 KB
testcase_28 AC 76 ms
22,144 KB
testcase_29 AC 27 ms
18,176 KB
testcase_30 AC 28 ms
18,176 KB
testcase_31 AC 28 ms
18,176 KB
testcase_32 AC 30 ms
18,048 KB
testcase_33 AC 28 ms
18,176 KB
testcase_34 AC 30 ms
18,432 KB
testcase_35 AC 30 ms
18,048 KB
testcase_36 AC 30 ms
18,176 KB
testcase_37 AC 30 ms
18,176 KB
testcase_38 AC 37 ms
22,016 KB
testcase_39 AC 35 ms
21,760 KB
testcase_40 AC 42 ms
22,144 KB
testcase_41 AC 56 ms
22,144 KB
testcase_42 AC 44 ms
22,400 KB
testcase_43 AC 33 ms
18,560 KB
testcase_44 AC 329 ms
43,328 KB
testcase_45 AC 38 ms
22,144 KB
testcase_46 AC 30 ms
18,688 KB
testcase_47 AC 221 ms
43,356 KB
testcase_48 AC 165 ms
43,724 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Numerics;
using System;

public class Hello
{
    static void Main()
    {
        var n = long.Parse(Console.ReadLine().Trim());
        var m = int.Parse(Console.ReadLine().Trim());
        var t = (n / m / 1000) * 1000;
        var a = (n - t * m) / 1000;
        getAns(m, a);
    }
    static void getAns (int m, long a)
    {
        BigInteger x = 1;
        BigInteger x2 = 1;
        var y2 = a;
        for (int i = 0; i < a; i++)
        {
            x *= m--;
            x2 *= y2--;
        }
        var ans = (x / x2) % 1000000000;
        Console.WriteLine(ans) ;
    }
}
0