Submission #398902

# Submission time Handle Problem Language Result Execution time Memory
398902 2021-05-04T22:02:24 Z Alexandra Imena (COCI16_imena) C++14
50 / 50
1 ms 204 KB
#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

imena.cpp: In function 'int main()':
imena.cpp:28:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |    for (int j=1; j<s.length(); j++) {
      |                  ~^~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Correct 1 ms 204 KB Output is correct
7 Correct 1 ms 204 KB Output is correct
8 Correct 1 ms 204 KB Output is correct
9 Correct 1 ms 204 KB Output is correct
10 Correct 1 ms 204 KB Output is correct