| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 156385 | dcj | Aron (COCI17_aron) | C++14 | 2 ms | 376 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
int main()
{
	int N;
	int br=0;
	cin >> N;
	char x, p ='.';
	while (N--) {
		cin >> x;
		if (x != p) br++;
			p=x;
	}
	cout << br+1;
	
	return 0;
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
