比赛 20120619 评测结果 AAAAAAAAAA
题目名称 FBI序列 最终得分 100
用户昵称 Satoshi 运行时间 0.002 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2016-04-22 08:24:00
显示代码纯文本
#include <fstream>
#include <algorithm>
#include <string>
using namespace std;
typedef long long ll;
ifstream cin("fbi.in");
ofstream cout("fbi.out");
string S;
ll F,B,I;
void read()
{
	int i;
	cin>>S;
	F=B=I=0;
    for(i=0;i<S.length();i++)
	{
		if(S[i]=='F')F++;
		if(S[i]=='B')B+=F;
		if(S[i]=='I')I+=B;
	}
	cout<<I<<endl;
}
void work()
{
	
}
int main()
{
	read();
	work();
	return 0;
}