제출 #83764

#제출 시각아이디문제언어결과실행 시간메모리
83764duva02Aron (COCI17_aron)C++14
0 / 50
2 ms636 KiB
#include<bits/stdc++.h>

using namespace std;

int main()
{
ios::sync_with_stdio(0);
cin.tie(0);

int n, br = 1;
cin >> n;
char a[27];
for(int i = 0; i < n - 1; ++i)
	cin >> a[i];

for(int i = 0; i < n - 1; ++i)
if(a[1]==a[i-1])br++;	
		
cout << br+1;

  return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...