# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
864341 |
2023-10-22T14:33:11 Z |
Ariadna |
Imena (COCI16_imena) |
C++14 |
|
0 ms |
504 KB |
#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 |
1 |
Correct |
0 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
3 |
Correct |
0 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
0 ms |
348 KB |
Output is correct |
6 |
Correct |
0 ms |
348 KB |
Output is correct |
7 |
Correct |
0 ms |
348 KB |
Output is correct |
8 |
Correct |
0 ms |
348 KB |
Output is correct |
9 |
Correct |
0 ms |
504 KB |
Output is correct |
10 |
Correct |
0 ms |
344 KB |
Output is correct |