結果

問題 No.895 MESE
ユーザー yuruhiyayuruhiya
提出日時 2020-10-19 17:46:49
言語 cLay
(20240714-1)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 4,298 ms
コンパイル使用メモリ 182,688 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-07-05 14:35:42
合計ジャッジ時間 5,165 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 15 ms
5,376 KB
testcase_14 AC 29 ms
5,376 KB
testcase_15 AC 31 ms
6,016 KB
testcase_16 AC 21 ms
5,504 KB
testcase_17 AC 6 ms
5,376 KB
testcase_18 AC 36 ms
6,528 KB
testcase_19 AC 36 ms
6,656 KB
testcase_20 AC 36 ms
6,656 KB
testcase_21 AC 36 ms
6,528 KB
testcase_22 AC 35 ms
6,528 KB
testcase_23 AC 35 ms
6,656 KB
testcase_24 AC 36 ms
6,528 KB
testcase_25 AC 36 ms
6,656 KB
testcase_26 AC 36 ms
6,528 KB
testcase_27 AC 35 ms
6,656 KB
testcase_28 AC 36 ms
6,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

{
	int @a, @b, @c;
	Comb<Mint> C;
	Mint ans;
	rep(i, 2, a + 2) {
		int m = a + b + c - i;
		ans += (Mint(2) ** m - 1) * C.C(m, c) * c / m * C.C(a + b - i, b - 1);
	}
	wt(ans);
}
0