結果
問題 | No.117 組み合わせの数 |
ユーザー | Ysmr_Ry |
提出日時 | 2015-01-05 02:19:51 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,130 bytes |
コンパイル時間 | 418 ms |
コンパイル使用メモリ | 25,216 KB |
実行使用メモリ | 17,204 KB |
最終ジャッジ日時 | 2024-06-13 02:41:01 |
合計ジャッジ時間 | 1,729 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:56:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 56 | scanf( "%d", &T ); | ~~~~~^~~~~~~~~~~~ main.cpp:60:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 60 | scanf( "%s", S ); | ~~~~~^~~~~~~~~~~
ソースコード
#include<cstdio> #include<cstring> #include<cctype> #define rep(i,a) for(int i=0;i<(a);++i) #define repd(i,a) for(int i=(a);i>=0;--i) typedef long long ll; const ll mod = 1000000007; int T; ll fact[1000001], factinv[1000001]; ll extgcd( ll a, ll b, ll &x, ll &y ) { int d = b; if( b ) { d = extgcd( b, a%b, y, x ); y -= a/b*x; } else x = 1, y = 0; return d; } ll divMod( ll a, ll b, ll m ) { ll x, y; extgcd( b, m, x, y ); return ((a*x)%m+m)%m; } ll perm( int n, int r ) { return n<r?0:fact[n]*factinv[n-r] % mod; } ll comb( int n, int r ) { return n<r?0:perm(n,r)*factinv[r] % mod; } ll homo( int n, int r ) { return comb( n+r-1, r ); } int main() { fact[0] = 1; rep( i, 1000000 ) fact[i+1] = (i+1)*fact[i] % mod; factinv[1000000] = divMod( 1, fact[1000000], mod ); repd( i, 1000000-1 ) factinv[i] = (factinv[i+1]*(i+1)) % mod; scanf( "%d", &T ); rep( i, T ) { char S[21]; scanf( "%s", S ); char buf[21]; *buf = *S; buf[1] = '\0'; strcat(buf, "(%d,%d)"); int n, r; sscanf( S, buf, &n, &r ); printf( "%lld\n", (*S=='C'?comb:*S=='P'?perm:homo)(n, r) ); } return 0; }