結果

問題 No.391 CODING WAR
ユーザー mbanmban
提出日時 2017-01-12 06:16:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 218 ms / 2,000 ms
コード長 2,761 bytes
コンパイル時間 906 ms
コンパイル使用メモリ 114,020 KB
実行使用メモリ 26,568 KB
最終ジャッジ日時 2024-06-01 06:17:54
合計ジャッジ時間 3,350 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,104 KB
testcase_01 AC 26 ms
23,968 KB
testcase_02 AC 26 ms
26,012 KB
testcase_03 AC 26 ms
21,936 KB
testcase_04 AC 25 ms
24,044 KB
testcase_05 AC 25 ms
23,912 KB
testcase_06 AC 25 ms
22,068 KB
testcase_07 AC 27 ms
23,852 KB
testcase_08 AC 26 ms
23,788 KB
testcase_09 AC 218 ms
24,672 KB
testcase_10 AC 203 ms
24,884 KB
testcase_11 AC 25 ms
21,940 KB
testcase_12 AC 27 ms
26,016 KB
testcase_13 AC 199 ms
24,624 KB
testcase_14 AC 172 ms
24,492 KB
testcase_15 AC 188 ms
26,568 KB
testcase_16 AC 122 ms
24,296 KB
testcase_17 AC 143 ms
24,240 KB
testcase_18 AC 104 ms
24,300 KB
testcase_19 AC 107 ms
26,324 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;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;
using System.IO;


class Program
{
    static Magatro M = new Magatro();
    static void Main()
    {
        M.Scan();
        M.Solve();
    }
}
class Magatro
{
    private long N, M;
    private const int Mod = 1000000007;
    private long[] Factorial;
    public void Scan()
    {
        Scanner sc = new Scanner();
        N = sc.NextLong();
        M = sc.NextLong();
    }
    public void Solve()
    {
        if (N < M)
        {
            Console.WriteLine(0);
            return;
        }
        FactorialCalc();
        long ans = 0;
        for(int i = 0; i < M; i++)
        {
            int plus;
            if (i % 2 == 0)
            {
                plus = 1;
            }
            else
            {
                plus = -1;
            }
            ans += Converter(plus * MCombination(i) * MyPow(M - i,N,Mod));
        }
        Console.WriteLine(ans%Mod);
    }
    private long Converter(long n)
    {
        n %= Mod;
        if (n < 0) n += Mod;
        return n;
    }
    private long MCombination(long n)
    {
        long bunshi = Factorial[M];
        long bunbo = (Factorial[n] * Factorial[M - n]) % Mod;
        return (bunshi * MyPow(bunbo, Mod - 2, Mod)) % Mod;
    }
    private void FactorialCalc()
    {
        Factorial = new long[M + 1];
        Factorial[0] = 1;
        for(int i = 1; i <= M; i++)
        {
            Factorial[i] = (Factorial[i - 1] * i) % Mod;
        }
    }
    private long MyPow(long a,long b,long mod)
    {
        long result = 1;
        while (b > 0)
        {
            if (b % 2 == 0)
            {
                a = (a * a) % mod;
                b /= 2;
            }
            else
            {
                result = (result * a) % mod;
                b--;
            }
        }
        return result;
    }
}
public class Scanner
{
    private string[] S;
    private int Index;
    private char Separator;
    public Scanner(char separator=' ')
    {
        Index = 0;
        Separator = separator;
    }
    private string[] Line()
    {
        return Console.ReadLine().Split(Separator);
    }
    public string Next()
    {
        string result;
        if (S == null || Index >= S.Length)
        {
            S = Line();
            Index = 0;
        }
        result = S[Index];
        Index++;
        return result;
    }
    public int NextInt()
    {
        return int.Parse(Next());
    }
    public double NextDouble()
    {
        return double.Parse(Next());
    }
    public long NextLong()
    {
        return long.Parse(Next());
    }
}
0