# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
157561 | Doda | Elder (COCI19_elder) | C++98 | 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 x[95];
int main () {
char a,b,c;
int n;
int d;
cin >> a;
cin >> n;
x[a] = 1;
c = a;
for (int i = 0; i<n ; i++){
cin >> a >> b;
if (b == c){
c = a;
if (x[c]==0){
x[c]=1;
}
}
}
int m = 'A';
for (int i = m; i<100;i++){
if (x[i] == 1){
d++;
}
}
cout << c << "\n";
cout << d-1;
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |