A. Love "A"

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Alice has a string ss. She really likes the letter "a". She calls a string good if strictly more than half of the characters in that string are "a"s. For example "aaabb", "axaa" are good strings, and "baca", "awwwa", "" (empty string) are not.

Alice can erase some characters from her string ss. She would like to know what is the longest string remaining after erasing some characters (possibly zero) to get a good string. It is guaranteed that the string has at least one "a" in it, so the answer always exists.

Input

The first line contains a string ss (1≤|s|≤501≤|s|≤50) consisting of lowercase English letters. It is guaranteed that there is at least one "a" in ss.

Output

Print a single integer, the length of the longest good string that Alice can get after erasing some characters from ss.

Examples

input

Copy

xaxxxxa

output

Copy

3

input

Copy

aaabaa

output

Copy

6

Note

In the first example, it's enough to erase any four of the "x"s. The answer is 33 since that is the maximum number of characters that can remain.

In the second example, we don't need to erase any characters.

 

解题说明:水题,统计字母次数即可。

#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include<iostream>
#include<algorithm>
#include <bits/stdc++.h>
using namespace std;

int main() 
{
	char s[51];
	int i,c1, c2 = 0;
	scanf("%s", s);
	c1 = strlen(s);
	for (i = 0; i < c1; i++)
	{
		if (s[i] == 'a')
		{
			c2++;
		}
	}
	if (c2 <= c1 / 2)
	{
		printf("%d\n", 2 * c2 - 1);
	}
	else
	{
		printf("%d\n", c1);
	}
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值