結果

問題 No.129 お年玉(2)
ユーザー AreTrashAreTrash
提出日時 2016-05-26 11:29:55
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 241 ms / 5,000 ms
コード長 600 bytes
コンパイル時間 2,855 ms
コンパイル使用メモリ 111,980 KB
実行使用メモリ 53,480 KB
最終ジャッジ日時 2024-11-28 00:32:00
合計ジャッジ時間 7,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
30,716 KB
testcase_01 AC 37 ms
26,740 KB
testcase_02 AC 35 ms
24,756 KB
testcase_03 AC 37 ms
24,692 KB
testcase_04 AC 34 ms
26,596 KB
testcase_05 AC 38 ms
26,608 KB
testcase_06 AC 82 ms
28,820 KB
testcase_07 AC 63 ms
30,976 KB
testcase_08 AC 37 ms
26,752 KB
testcase_09 AC 114 ms
42,112 KB
testcase_10 AC 56 ms
30,728 KB
testcase_11 AC 56 ms
30,596 KB
testcase_12 AC 225 ms
51,280 KB
testcase_13 AC 241 ms
51,624 KB
testcase_14 AC 89 ms
28,428 KB
testcase_15 AC 79 ms
30,848 KB
testcase_16 AC 69 ms
30,344 KB
testcase_17 AC 161 ms
53,480 KB
testcase_18 AC 56 ms
28,684 KB
testcase_19 AC 40 ms
28,656 KB
testcase_20 AC 67 ms
28,804 KB
testcase_21 AC 207 ms
48,776 KB
testcase_22 AC 54 ms
26,504 KB
testcase_23 AC 60 ms
30,716 KB
testcase_24 AC 37 ms
26,744 KB
testcase_25 AC 62 ms
28,420 KB
testcase_26 AC 47 ms
32,520 KB
testcase_27 AC 48 ms
30,596 KB
testcase_28 AC 113 ms
42,104 KB
testcase_29 AC 37 ms
26,588 KB
testcase_30 AC 35 ms
24,692 KB
testcase_31 AC 36 ms
24,576 KB
testcase_32 AC 36 ms
24,560 KB
testcase_33 AC 36 ms
24,580 KB
testcase_34 AC 36 ms
24,556 KB
testcase_35 AC 37 ms
24,444 KB
testcase_36 AC 42 ms
26,744 KB
testcase_37 AC 36 ms
24,692 KB
testcase_38 AC 45 ms
28,424 KB
testcase_39 AC 54 ms
30,472 KB
testcase_40 AC 91 ms
30,716 KB
testcase_41 AC 48 ms
28,420 KB
testcase_42 AC 40 ms
28,540 KB
testcase_43 AC 54 ms
26,756 KB
testcase_44 AC 44 ms
28,536 KB
testcase_45 AC 40 ms
26,608 KB
testcase_46 AC 62 ms
28,672 KB
testcase_47 AC 49 ms
28,544 KB
testcase_48 AC 38 ms
26,736 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, X) / F(M - X, 1) % 1000000000);
        }

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