# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
38169 | wasyl | Aron (COCI17_aron) | C++11 | 0 ms | 2176 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()
{
ios::sync_with_stdio(false);
int n; cin >> n;
char pop = ' ';
int res = 0;
while (n--) {
char c; cin >> c;
res += (pop != c);
pop = c;
}
cout << res + 1 << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |