結果
問題 | No.1035 Color Box |
ユーザー | Oland |
提出日時 | 2020-04-24 21:46:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 114 ms / 2,000 ms |
コード長 | 9,364 bytes |
コンパイル時間 | 2,520 ms |
コンパイル使用メモリ | 79,112 KB |
実行使用メモリ | 53,236 KB |
最終ジャッジ日時 | 2024-10-15 02:40:37 |
合計ジャッジ時間 | 6,039 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 114 ms
53,200 KB |
testcase_01 | AC | 55 ms
50,464 KB |
testcase_02 | AC | 54 ms
49,928 KB |
testcase_03 | AC | 63 ms
50,152 KB |
testcase_04 | AC | 72 ms
53,148 KB |
testcase_05 | AC | 59 ms
50,500 KB |
testcase_06 | AC | 54 ms
49,972 KB |
testcase_07 | AC | 67 ms
52,528 KB |
testcase_08 | AC | 111 ms
53,196 KB |
testcase_09 | AC | 87 ms
53,056 KB |
testcase_10 | AC | 59 ms
50,096 KB |
testcase_11 | AC | 55 ms
50,160 KB |
testcase_12 | AC | 55 ms
50,500 KB |
testcase_13 | AC | 103 ms
53,060 KB |
testcase_14 | AC | 108 ms
52,988 KB |
testcase_15 | AC | 113 ms
53,236 KB |
testcase_16 | AC | 54 ms
50,300 KB |
testcase_17 | AC | 54 ms
50,464 KB |
testcase_18 | AC | 55 ms
50,448 KB |
testcase_19 | AC | 114 ms
53,000 KB |
testcase_20 | AC | 54 ms
50,224 KB |
testcase_21 | AC | 55 ms
50,364 KB |
testcase_22 | AC | 54 ms
50,020 KB |
testcase_23 | AC | 54 ms
50,364 KB |
testcase_24 | AC | 54 ms
50,380 KB |
testcase_25 | AC | 55 ms
50,516 KB |
testcase_26 | AC | 54 ms
50,268 KB |
testcase_27 | AC | 54 ms
50,456 KB |
testcase_28 | AC | 54 ms
50,356 KB |
testcase_29 | AC | 54 ms
50,336 KB |
testcase_30 | AC | 54 ms
50,428 KB |
testcase_31 | AC | 55 ms
50,276 KB |
testcase_32 | AC | 54 ms
50,400 KB |
testcase_33 | AC | 54 ms
50,344 KB |
testcase_34 | AC | 53 ms
50,020 KB |
testcase_35 | AC | 56 ms
50,368 KB |
testcase_36 | AC | 55 ms
50,432 KB |
testcase_37 | AC | 53 ms
50,428 KB |
ソースコード
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; } } }