# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
864341 | Ariadna | Imena (COCI16_imena) | C++14 | 0 ms | 504 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;
string s;
int names = 0;
while (cin >> s) {
int t = s.size();
if (int(s[0]) >= int('A') && int(s[0]) <= int('Z')) {
bool name = true;
for (int i = 1; i < t - 1; ++i) {
if (int(s[i]) < int('a') || int(s[i]) > int('z')) {
name = false;
}
}
if (int(s[t - 1]) >= int('a') && int(s[t - 1]) <= int('z')) name &= true;
else if (s[t - 1] == '.' || s[t - 1] == '?' ||s[t - 1] == '!') name &= true;
else if (t > 1) name = false;
if (name) ++names;
}
if (s[t - 1] == '.' || s[t - 1] == '?' ||s[t - 1] == '!') {
cout << names << '\n';
names = 0;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |