結果
問題 | No.117 組み合わせの数 |
ユーザー | face4 |
提出日時 | 2018-10-09 16:56:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 67 ms / 5,000 ms |
コード長 | 1,432 bytes |
コンパイル時間 | 572 ms |
コンパイル使用メモリ | 64,512 KB |
実行使用メモリ | 34,816 KB |
最終ジャッジ日時 | 2024-10-12 16:35:09 |
合計ジャッジ時間 | 1,460 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge |
(要ログイン)
ソースコード
#include<iostream> using namespace std; typedef long long ll; const ll mod = 1e9 + 7; ll modpow(ll a, ll b, ll p = 1e9+7){ if(b == 0) return 1; if(b % 2 == 0){ ll d = modpow(a, b/2, p); return (d*d) % p; }else{ return (a%p * modpow(a, b-1, p)) % p; } } #define N 2000005 ll po[N]; ll inv[N]; int main(){ po[0] = 1; for(int i = 1; i < N; i++) po[i] = (po[i-1] * i) % mod; inv[N-1] = modpow(po[N-1], mod-2, mod); for(int i = N-2; i >= 0; i--) inv[i] = (inv[i+1]*(i+1)) % mod; int t; scanf("%d\n", &t); char c; int n, k; for(int i = 0; i < t; i++){ ll ans = 1; scanf("%c(%d,%d)\n", &c, &n, &k); if(c != 'H' && n < k){ printf("0\n"); continue; } if(c == 'H' && n == 0 && k == 0){ printf("1\n"); continue; } switch(c){ case 'C': ans = (ans * po[n]) % mod; ans = (ans * inv[n-k]) % mod; ans = (ans * inv[k]) % mod; break; case 'P': ans = (ans * po[n]) % mod; ans = (ans * inv[n-k]) % mod; break; case 'H': ans = (ans * po[n+k-1]) % mod; ans = (ans * inv[k]) % mod; ans = (ans * inv[n+k-1-k]) % mod; break; } printf("%d\n", ans); } return 0; }