# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
864616 | hfoliacots | Imena (COCI16_imena) | C++14 | 0 ms | 348 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() {
int n;
cin >> n;
while (n--) {
int cont = 0;
while (true) {
string w;
cin >> w;
int s = w.size();
if (w[0] >= 'A' and w[0] <= 'Z') {
bool es = true;
for (int i = 1; i < s; i++) {
if ((w[i] < 'a' || w[i] > 'z') && w[i] != '.' && w[i] != '!' && w[i] != '?') {
es = false;
break;
}
}
if (es) cont++;
}
if (w[s-1] == '.' or w[s-1] == '!' or w[s-1] == '?') break;
}
cout << cont << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |