結果
問題 | No.391 CODING WAR |
ユーザー | kotamanegi |
提出日時 | 2019-05-12 21:21:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 134 ms / 2,000 ms |
コード長 | 1,959 bytes |
コンパイル時間 | 978 ms |
コンパイル使用メモリ | 109,300 KB |
実行使用メモリ | 22,144 KB |
最終ジャッジ日時 | 2024-07-05 17:13:15 |
合計ジャッジ時間 | 2,680 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 134 ms
22,144 KB |
testcase_10 | AC | 132 ms
22,144 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 133 ms
22,144 KB |
testcase_14 | AC | 103 ms
17,408 KB |
testcase_15 | AC | 113 ms
19,456 KB |
testcase_16 | AC | 61 ms
12,544 KB |
testcase_17 | AC | 78 ms
14,720 KB |
testcase_18 | AC | 48 ms
10,624 KB |
testcase_19 | AC | 48 ms
11,008 KB |
ソースコード
#define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <algorithm> #include <utility> #include <functional> #include <cstring> #include <queue> #include <stack> #include <math.h> #include <iterator> #include <vector> #include <string> #include <set> #include <math.h> #include <iostream> #include <random> #include<map> #include <iomanip> #include <time.h> #include <stdlib.h> #include <list> #include <typeinfo> #include <list> #include <set> #include <cassert> #include<fstream> #include <unordered_map> using namespace std; #define Ma_PI 3.141592653589793 #define eps 0.00000000000000000000000001 #define LONG_INF 10000000000000000 #define GOLD 1.61803398874989484820458 #define MOD 1000000007 #define REP(i,n) for(long long i = 0;i < n;++i) map<pair<long long, long long>, long long> memo; long long power(long long a,long long now) { if (memo[make_pair(a, now)]) return memo[make_pair(a, now)]; long long ans = 1; pair<int, int> base = make_pair(a, now); while (now != 0) { if (now % 2 == 1) { ans *= a; ans %= MOD; } now /= 2; a *= a; a %= MOD; } return memo[base] = ans; } long long inv(long long a) { return power(a, MOD - 2); } long long permutation(long long a, long long b) { long long ans = 1; for (long long i = 0; i < b; ++i) { ans *= (a - i); ans %= MOD; } return ans; } long long combination(long long a, long long b) { long long ans = 1; for (long long i = 0; i < b; ++i) { ans *= (a - i); ans %= MOD; ans *= inv(i + 1); ans %= MOD; } return ans; } int main() { long long n, m; cin >> n >> m; if (n < m) { cout << 0 << endl; return 0; } long long ans = 0; long long tmpe = 1; for (long long i = 0; i < m; ++i) { long long tmp = tmpe; tmpe *= (m - i); tmpe %= MOD; tmpe *= inv(i + 1); tmpe %= MOD; tmp *= power(m - i,n); tmp %= MOD; if (i % 2 == 0) { ans += tmp; } else { ans -= tmp; } ans += MOD; ans %= MOD; } cout << ans << endl; return 0; }