# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
370978 | maozkurt | Imena (COCI16_imena) | C++17 | 1 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cctype>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <queue>
#include <map>
#include <set>
#include <vector>
#include <string>
#include <stack>
#include <numeric>
#include <cassert>
#define endl '\n'
#define sp ' '
#define pb push_back
#define mp make_pair
#define ff first
#define ss second
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
bool isp(char c){
if(c == '.' || c == '!' || c == '?')
return true;
return false;
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);cerr.tie(nullptr);
int n;cin>>n;
string s;
for(int i=0;i<n;i++){
int cur = 0;
while(true){
cin >> s;
if(isupper(s[0])){
bool valid = true;
for(int j = 1;j<(int)s.size()-2;j++){
if(!islower(s[j])){
valid = false;
break;
}
}
if(!isp(s[s.size()-1]) && !islower(s[s.size()-1]))
valid = false;
if(valid)
cur++;
}
if(isp(s[s.size()-1]))
break;
}
cout << cur << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |