记录编号 |
159228 |
评测结果 |
AAAAAAAAAA |
题目名称 |
牛 |
最终得分 |
100 |
用户昵称 |
Ra-xp |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.021 s |
提交时间 |
2015-04-20 13:46:35 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<iostream>
#include<fstream>
#include<string>
#include<algorithm>
#include<vector>
#include<cmath>
#include<stack>
#define MAXN 10000
using namespace std;
int main()
{
freopen("cowa.in","r",stdin);
freopen("cowa.out","w",stdout);
long long i, j, k, a, b, n, ans=0;
string word;
cin>>n>>word;
long long cn=0, on=0, wn=0;
for(i=0;i<n;i++)
{
if(word[i]=='C')
{
cn++;
}
if(word[i]=='O')
{
on=cn+on;
}
if(word[i]=='W')
{
wn=on+wn;
}
}
cout<<wn<<endl;
return 0;
}