比赛 20150420 评测结果 AAAAAAAATT
题目名称 最终得分 80
用户昵称 slyrabbit 运行时间 2.021 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2015-04-20 08:49:53
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<vector>
using namespace std;
class student
{
public:
	long long c,o,w;
	void init(){
		c=0;o=0;w=0;
	}
}sum;
int n;
long long ans=0;
vector<int>Count;
string str;
/*===============================================================*/
int main()
{
	freopen("cowa.in","r",stdin);
	freopen("cowa.out","w",stdout);
	cin>>n;
	cin>>str;
	for(int i=0;i<n;i++)
	{
		if(str[i]=='C')
			Count.push_back(sum.o);
		if(str[i]=='O')
		{
			sum.o++;
		}
		if(str[i]=='W')
		{
			for(int j=0;j<Count.size();j++)
			{
				ans+=(sum.o-Count[j]);
			}
		}
	}
	cout<<ans;
	return 0;
}