結果

問題 No.1035 Color Box
ユーザー OlandOland
提出日時 2020-04-24 21:46:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 9,364 bytes
コンパイル時間 3,322 ms
コンパイル使用メモリ 75,392 KB
実行使用メモリ 53,004 KB
最終ジャッジ日時 2023-08-05 04:47:46
合計ジャッジ時間 5,795 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
52,592 KB
testcase_01 AC 54 ms
49,724 KB
testcase_02 AC 42 ms
49,392 KB
testcase_03 AC 52 ms
50,744 KB
testcase_04 AC 60 ms
52,748 KB
testcase_05 AC 47 ms
49,500 KB
testcase_06 AC 44 ms
49,496 KB
testcase_07 AC 56 ms
51,636 KB
testcase_08 AC 96 ms
53,004 KB
testcase_09 AC 74 ms
52,608 KB
testcase_10 AC 47 ms
49,416 KB
testcase_11 AC 42 ms
49,372 KB
testcase_12 AC 43 ms
49,312 KB
testcase_13 AC 89 ms
52,612 KB
testcase_14 AC 94 ms
52,708 KB
testcase_15 AC 101 ms
52,616 KB
testcase_16 AC 43 ms
49,652 KB
testcase_17 AC 43 ms
49,396 KB
testcase_18 AC 43 ms
49,336 KB
testcase_19 AC 103 ms
52,788 KB
testcase_20 AC 45 ms
49,368 KB
testcase_21 AC 46 ms
49,508 KB
testcase_22 AC 42 ms
49,360 KB
testcase_23 AC 42 ms
49,276 KB
testcase_24 AC 42 ms
49,648 KB
testcase_25 AC 42 ms
49,768 KB
testcase_26 AC 43 ms
49,492 KB
testcase_27 AC 42 ms
49,684 KB
testcase_28 AC 43 ms
49,836 KB
testcase_29 AC 41 ms
49,308 KB
testcase_30 AC 42 ms
49,460 KB
testcase_31 AC 42 ms
49,156 KB
testcase_32 AC 42 ms
49,260 KB
testcase_33 AC 44 ms
47,420 KB
testcase_34 AC 48 ms
49,384 KB
testcase_35 AC 42 ms
49,412 KB
testcase_36 AC 43 ms
49,276 KB
testcase_37 AC 42 ms
49,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

@SuppressWarnings("unused")
public class Main {
    FastScanner in;
    PrintWriter out;
    final static int MOD = (int)1e9+7;
    final static long INF = Long.MAX_VALUE / 2;
    
    void solve(){
        int N = in.nextInt(), M = in.nextInt();
        ModCalculator mc = new ModCalculator(N, MOD);
        long ans = 0;
        for(int i = 1; i <= M; i++){
            long add = mc.modComb(M, i) * ModCalculator.modPow(i, N, MOD);
            add %= MOD;
            if((M - i) % 2 == 1) add = MOD - add;
            ans += add;
            ans %= MOD;
        }
        out.println(ans);
    }
    
    static class ModCalculator{
        //引数の最大値、MOD
        private final int MAX_FAC, MOD;
        //階乗・階乗の逆元・積の逆元のテーブル
        private long[] fact, factInv, inv;
        
        public ModCalculator(){
            this(510000, (int)1e9+7);
        }
        
        public ModCalculator(int max, int mod){
            MAX_FAC = max; MOD = mod;
            init();
        }
        
        //テーブルの初期化
        private void init(){
            fact = new long[MAX_FAC+1];
            factInv = new long[MAX_FAC+1];
            inv = new long[MAX_FAC+1];
            fact[0] = factInv[0] = inv[0] = fact[1] = factInv[1] = inv[1] = 1;
            for (int i = 2; i <= MAX_FAC; ++i) {
                fact[i] = fact[i - 1] * i % MOD;
                inv[i] = MOD - (MOD / i) * inv[(int) (MOD % i)] % MOD;
                factInv[i] = factInv[i - 1] * inv[i] % MOD;
            }
        }
        
        //nPk % MOD
        public long modPerm(int n, int k){
            return (n >= k) ? fact[n] * factInv[n - k] % MOD : 0;
        }
        
        //nCk % MOD
        public long modComb(int n, int k){
            return (n >= k) ? fact[n] * factInv[k] % MOD * factInv[n - k] % MOD : 0;
        }
        
        //nPk % MOD、nが大きくてもO(k)で計算できる
        public long modPermLarge(long n, int k){
            if(n < k) return 0;
            long res = 1;
            for(long i = n; i > n - k; i--) res = (res * (i % MOD)) % MOD;
            return res;
        }
        
        //nCk % MOD、nが大きくてもO(k)で計算できる
        public long modCombLarge(long n, int k){
            if(n < k) return 0;
            long res = 1;
            for(long i = n; i > n - k; i--) res = (res * (i % MOD)) % MOD;
            res = (res * factInv[k]) % MOD;
            return res;
        }
        
        //n! % MOD
        public long modFact(int n){
            return fact[n];
        }
        
        //(n!)^-1 % MOD
        public long modFactInv(int n){
            return factInv[n];
        }
        
        //n^-1 % MOD
        public long modMultiInv(int n){
            return inv[n];
        }
        
        //n^-1 % MOD をlog(MOD)で計算
        public static long modMultiInv(long a, int mod){
            return modPow(a, mod-2, mod);
        }
        
        //a^b % MOD をlog(b)で計算
        public static long modPow(long a, long b, int mod){
            long res = 1;
            while(b > 0){
                if((b & 1) == 1) res = (res * a) % mod;
                a = (a * a) % mod;
                b = b >> 1;
            }
            return res;
        }
    }
    
    public static void main(String[] args) {
        new Main().m();
    }
    
    private void m() {
        in = new FastScanner(System.in);
        out = new PrintWriter(System.out);
        /*
        try {
            String path = "input.txt";
            out = new PrintWriter(new BufferedWriter(new FileWriter(new File(path))));
        }catch (IOException e){
            e.printStackTrace();
        }
        */
        solve();
        out.flush();
        in.close();
        out.close();
    }
    
    static class FastScanner {
        private Reader input;
        
        public FastScanner() {this(System.in);}
        public FastScanner(InputStream stream) {this.input = new BufferedReader(new InputStreamReader(stream));}
        public void close() {
            try {
                this.input.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        
        public int nextInt() {return (int) nextLong();}
        
        public long nextLong() {
            try {
                int sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                long ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) return ret * sign;
                    ret *= 10;
                    ret += b - '0';
                }
            } catch (IOException e) {
                e.printStackTrace();
                return -1;
            }
        }
        
        public double nextDouble() {
            try {
                double sign = 1;
                int b = input.read();
                while ((b < '0' || '9' < b) && b != '-' && b != '+') {
                    b = input.read();
                }
                if (b == '-') {
                    sign = -1;
                    b = input.read();
                } else if (b == '+') {
                    b = input.read();
                }
                double ret = b - '0';
                while (true) {
                    b = input.read();
                    if (b < '0' || '9' < b) break;
                    ret *= 10;
                    ret += b - '0';
                }
                if (b != '.') return sign * ret;
                double div = 1;
                b = input.read();
                while ('0' <= b && b <= '9') {
                    ret *= 10;
                    ret += b - '0';
                    div *= 10;
                    b = input.read();
                }
                return sign * ret / div;
            } catch (IOException e) {
                e.printStackTrace();
                return Double.NaN;
            }
        }
        
        public char nextChar() {
            try {
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                return (char) b;
            } catch (IOException e) {
                e.printStackTrace();
                return 0;
            }
        }
        
        public String nextStr() {
            try {
                StringBuilder sb = new StringBuilder();
                int b = input.read();
                while (Character.isWhitespace(b)) {
                    b = input.read();
                }
                while (b != -1 && !Character.isWhitespace(b)) {
                    sb.append((char) b);
                    b = input.read();
                }
                return sb.toString();
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }
        
        public String nextLine() {
            try {
                StringBuilder sb = new StringBuilder();
                int b = input.read();
                while (b != -1 && b != '\n') {
                    sb.append((char) b);
                    b = input.read();
                }
                return sb.toString();
            } catch (IOException e) {
                e.printStackTrace();
                return "";
            }
        }
        
        public int[] nextIntArray(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt();
            }
            return res;
        }
        
        public int[] nextIntArrayDec(int n) {
            int[] res = new int[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextInt() - 1;
            }
            return res;
        }
        
        public int[] nextIntArray1Index(int n) {
            int[] res = new int[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextInt();
            }
            return res;
        }
        
        public long[] nextLongArray(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong();
            }
            return res;
        }
        
        public long[] nextLongArrayDec(int n) {
            long[] res = new long[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextLong() - 1;
            }
            return res;
        }
        
        public long[] nextLongArray1Index(int n) {
            long[] res = new long[n + 1];
            for (int i = 0; i < n; i++) {
                res[i + 1] = nextLong();
            }
            return res;
        }
        
        public double[] nextDoubleArray(int n) {
            double[] res = new double[n];
            for (int i = 0; i < n; i++) {
                res[i] = nextDouble();
            }
            return res;
        }
    }
}
0