結果
問題 | No.1035 Color Box |
ユーザー | hanbei_dayo |
提出日時 | 2020-07-18 16:54:40 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,264 bytes |
コンパイル時間 | 779 ms |
コンパイル使用メモリ | 98,564 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-08 00:00:24 |
合計ジャッジ時間 | 2,280 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 7 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 31 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | AC | 26 ms
5,376 KB |
testcase_14 | AC | 29 ms
5,376 KB |
testcase_15 | AC | 37 ms
5,376 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 36 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 4 ms
5,376 KB |
testcase_22 | AC | 4 ms
5,376 KB |
testcase_23 | AC | 4 ms
5,376 KB |
testcase_24 | AC | 4 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 4 ms
5,376 KB |
testcase_29 | AC | 4 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | AC | 4 ms
5,376 KB |
testcase_34 | AC | 3 ms
5,376 KB |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 4 ms
5,376 KB |
ソースコード
#include<iostream> #include<algorithm> #include<vector> #include<string> #include<utility> #include<map> #include<set> #include<queue> #include<stack> #include<functional> #include<math.h> #include<random> #include <bitset> using namespace std; #define N (1000000000+7) //#define N 998244353 #define INF 1e16 typedef long long ll; typedef pair<int,int> P; typedef pair<int,P> Q; const int inf = (int)1e9; ll gcd(ll a, ll b) { if (b > a) { ll tmp = b; b = a; a = tmp; } if (a%b == 0)return b; else return gcd(b, a%b); } ll kaijo[200010]; void init() { kaijo[0] = 1; for (ll i = 1;i <= 200000;i++)kaijo[i] = (kaijo[i - 1] * i) % N; } ll inv(ll x,ll power) { ll res = 1; ll k = power; ll y = x; while (k) { if (k & 1)res = (res*y) % N; y = (y%N*y%N) % N; k /= 2; } return res; } ll Comb(ll n, ll k) { if (n < 0 || k < 0 || (n - k) < 0)return 0; ll b = kaijo[n]; ll c = kaijo[n - k]; ll d = kaijo[k]; ll cd = (c*d) % N; return ((b%N)*(inv(cd,N-2)) % N) % N; } int main(void){ init(); ll n,m; cin>>n>>m; ll ans = 0; for(ll x=1;x<=m;x++){ ll kind = Comb(m,x); ll tmp = inv(x,n); ll X = (kind*tmp)%N; if(x%2==0)ans = (ans+X)%N; else{ ans = (ans-X)%N; ans = (ans+N)%N; } } cout<<(ans+N)%N<<endl; return 0; }