結果

問題 No.129 お年玉(2)
ユーザー AreTrashAreTrash
提出日時 2016-05-26 11:17:12
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 354 ms / 5,000 ms
コード長 583 bytes
コンパイル時間 2,792 ms
コンパイル使用メモリ 110,296 KB
実行使用メモリ 44,260 KB
最終ジャッジ日時 2024-11-28 00:31:52
合計ジャッジ時間 11,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
22,784 KB
testcase_01 AC 354 ms
43,852 KB
testcase_02 AC 31 ms
18,176 KB
testcase_03 AC 32 ms
18,688 KB
testcase_04 AC 32 ms
18,304 KB
testcase_05 AC 112 ms
35,584 KB
testcase_06 AC 181 ms
42,752 KB
testcase_07 AC 227 ms
42,880 KB
testcase_08 AC 146 ms
42,880 KB
testcase_09 AC 207 ms
42,880 KB
testcase_10 AC 242 ms
42,752 KB
testcase_11 AC 130 ms
43,008 KB
testcase_12 AC 229 ms
43,596 KB
testcase_13 AC 243 ms
42,752 KB
testcase_14 AC 194 ms
42,880 KB
testcase_15 AC 161 ms
42,880 KB
testcase_16 AC 180 ms
42,752 KB
testcase_17 AC 233 ms
42,880 KB
testcase_18 AC 207 ms
42,880 KB
testcase_19 AC 255 ms
44,260 KB
testcase_20 AC 193 ms
42,880 KB
testcase_21 AC 301 ms
43,020 KB
testcase_22 AC 153 ms
42,880 KB
testcase_23 AC 247 ms
42,880 KB
testcase_24 AC 277 ms
43,392 KB
testcase_25 AC 146 ms
42,880 KB
testcase_26 AC 148 ms
42,752 KB
testcase_27 AC 125 ms
42,880 KB
testcase_28 AC 278 ms
42,880 KB
testcase_29 AC 32 ms
18,560 KB
testcase_30 AC 32 ms
18,432 KB
testcase_31 AC 34 ms
18,304 KB
testcase_32 AC 35 ms
18,432 KB
testcase_33 AC 36 ms
19,584 KB
testcase_34 AC 34 ms
18,688 KB
testcase_35 AC 35 ms
19,328 KB
testcase_36 AC 35 ms
19,456 KB
testcase_37 AC 35 ms
19,840 KB
testcase_38 AC 53 ms
22,400 KB
testcase_39 AC 62 ms
22,656 KB
testcase_40 AC 135 ms
42,752 KB
testcase_41 AC 84 ms
22,272 KB
testcase_42 AC 56 ms
22,656 KB
testcase_43 AC 56 ms
22,528 KB
testcase_44 AC 330 ms
43,236 KB
testcase_45 AC 47 ms
22,656 KB
testcase_46 AC 60 ms
22,400 KB
testcase_47 AC 265 ms
42,880 KB
testcase_48 AC 156 ms
43,380 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.Numerics;

namespace No129_1 {
    public class Program {
        public static void Main(string[] args){
            var N = BigInteger.Parse(Console.ReadLine());
            var M = BigInteger.Parse(Console.ReadLine());
            var X = N / 1000 % M;

            Console.WriteLine(F(M) / F(X) / F(M - X) % 1000000000);
        }

        public static BigInteger F(BigInteger x){
            BigInteger result = 1;
            for(BigInteger i = 1; i <= x; i++){
                result *= i;
            }
            return result;
        }
    }
}
0