#include <bits/stdc++.h> using namespace std; string s; int v=0, c=0; int last=0; long long int wyn=0; bool if_vowel(char c){ if(c=='a' || c=='e' || c=='i' || c=='o' || c=='u' || c=='y') return true; else return false; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cin>>s; for(int i=0 ; i<s.size() ; i++){ if(if_vowel(s[i])){ v++; c=0; }else{ c++; v=0; } if(c>=3 || v>=3){ last=i-1; } wyn+=last; } cout<<wyn; return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include <bits/stdc++.h> using namespace std; string s; int v=0, c=0; int last=0; long long int wyn=0; bool if_vowel(char c){ if(c=='a' || c=='e' || c=='i' || c=='o' || c=='u' || c=='y') return true; else return false; } int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cin>>s; for(int i=0 ; i<s.size() ; i++){ if(if_vowel(s[i])){ v++; c=0; }else{ c++; v=0; } if(c>=3 || v>=3){ last=i-1; } wyn+=last; } cout<<wyn; return 0; } |