結果

問題 No.117 組み合わせの数
ユーザー creep04creep04
提出日時 2018-03-15 13:34:59
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 675 bytes
コンパイル時間 1,342 ms
コンパイル使用メモリ 158,896 KB
実行使用メモリ 19,244 KB
最終ジャッジ日時 2024-05-09 17:49:41
合計ジャッジ時間 2,413 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:28:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   28 |         scanf("%d", &t);
      |         ~~~~~^~~~~~~~~~
main.cpp:30:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |                 scanf("%1s(%lld,%lld)", c, &n, &k);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod = 1e9+7;

int t;
char c[100];
ll n, k, f[2002002];

ll mpow(ll x, ll n = mod-2, ll m = mod) {
	ll res = 1;
	while (n>0) {
		if (n&1) res = res * x %m;
		x = x * x %m;
		n >>= 1;
	}
	return res;
}

ll comb(ll n, ll k) {
	if (n<k) return 0;
	return f[n] * mpow(f[k]) %mod * mpow(f[n-k]) %mod;
}

int main() {
	f[0] = 1;
	for (ll i = 1; i <= 2000000; ++i) f[i] = f[i-1]*i %mod;
	scanf("%d", &t);
	while (t--) {
		scanf("%1s(%lld,%lld)", c, &n, &k);
		if (c[0]=='C') cout << comb(n,k) << endl;
		else if (c[0]=='P') cout << comb(n,k) * f[k] %mod << endl;
		else cout << comb(n+k-1,k) << endl;
	}
}
0