| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 398902 | Alexandra | Imena (COCI16_imena) | C++14 | 1 ms | 204 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>
#include <string>
#include <vector>
#include <cmath>
#include <algorithm>
using namespace std;
int main() {
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	int n;
	cin >> n;
	int resp=0;
	string s;
	int i=0;
	while (cin >> s) {
		bool name = false;
		if (i==n) {
			break;
		}
		if (s[0] >='A' && s[0]<='Z') {
			name = true;
			for (int j=1; j<s.length(); j++) {
				if (s[s.length()-1]>='0' && s[s.length()-1]<='9') {
					name = false;
					break;
				}
				else if ((s[j]>='a' && s[j]<='z') || (s[s.length()-1]=='.' || s[s.length()-1]=='?' || s[s.length()-1]=='!')) {
					continue;
				}
				else {
					name = false;
					break;
				}
			}
			if (name==true) {
				resp++;
			}
		}
		if (s[s.length()-1]=='.' || s[s.length()-1]=='?' || s[s.length()-1]=='!') {
			cout << resp << endl;
			resp = 0;
			i++;
		}
	}
	return 0;
}
Compilation message (stderr)
| # | Verdict | Execution time | Memory | Grader output | 
|---|---|---|---|---|
| Fetching results... | ||||
