-
1316 본문
#include <iostream>
#include <string.h>
using namespace std;
int main()
{
int n;
int ans = 0;
cin>>n;
while(n--)
{
bool flag = false;
int a = 0;
string str;
cin>>str;
for(int i=0; i<str.length();i++)
{
int index = i;
for(int j=i+1; j<str.length(); j++)
{
//aaaabccd 처럼 a가 2번이상 반복일때 처리에서 틀렸엇지만 이 부분을 통해서 해결
if(str[i] == str[j] && j-index == 1)
{
index = j;
}
else if(str[i] == str[j] && j-index != 1)
flag = true;
}
}
if(!flag) ans++;
}
cout<<ans;
}
'Algorithm > Baekjoon' 카테고리의 다른 글
2775 (0) | 2018.01.03 |
---|---|
10250 (0) | 2018.01.03 |
1011(다른 방법으로 꼭 다시 풀어 보기) (0) | 2018.01.03 |
1192(틀림_해결) (0) | 2018.01.02 |
2292 (0) | 2018.01.02 |
Comments