| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 83751 | JAN261202 | Aron (COCI17_aron) | C++14 | 2 ms | 560 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 <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
	int n, br = 1;
	cin >> n;
	char stari, novi;
	cin >> stari;
	for (int i = 0; i < n - 1; ++i){
		cin >> novi;
		if (novi != stari) br++;
		stari = novi;
	}
	cout << br + 1;
	
 	printf("\n\n");
 return 0;
 }
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
