結果

問題 No.346 チワワ数え上げ問題
ユーザー dgd1724dgd1724
提出日時 2016-11-03 07:01:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,657 ms / 2,000 ms
コード長 881 bytes
コンパイル時間 1,425 ms
コンパイル使用メモリ 161,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-03 21:24:40
合計ジャッジ時間 6,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 133 ms
6,944 KB
testcase_11 AC 46 ms
6,944 KB
testcase_12 AC 77 ms
6,940 KB
testcase_13 AC 38 ms
6,940 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 73 ms
6,940 KB
testcase_16 AC 92 ms
6,940 KB
testcase_17 AC 124 ms
6,944 KB
testcase_18 AC 125 ms
6,940 KB
testcase_19 AC 100 ms
6,944 KB
testcase_20 AC 3 ms
6,940 KB
testcase_21 AC 1,636 ms
6,944 KB
testcase_22 AC 1,657 ms
6,940 KB
testcase_23 AC 1 ms
6,940 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

//const static double	de_PI	= 3.14159265358979323846;
//const static int	de_MOD	= 1000000007;
//const static int	de_MAX	= 999999999;
//const static int	de_MIN = -999999999;

inline double nCr(const int n, int r) {

	if (n == 0) { return 0; }
	if (r == 0) { return 1; }
	if (r == 1) { return n; }
	if (n == r) { return 1; }

	if (r > n / 2) { r = n / 2; }

	double result = 1;
	for (double i = 1; i <= r; i++) {
		result *= (n - i + 1) / i;
	}

	return(result);
}
int main(void) {

	//std::ifstream in("123.txt");	std::cin.rdbuf(in.rdbuf());

	std::string S;
	std::cin >> S;

	double ans = 0;
	int st = 0, n = 0;

	while (S.find('c', st) != std::string::npos) {
		st = S.find('c', st) + 1;
		n = std::count(S.begin() + st, S.end(), 'w');
		if (n >= 2) { ans += nCr(n, 2); }
		else { break; }
	}

	std::cout << std::setprecision(20) << ans << std::endl;
}

0