#include<iostream> using namespace std; int main() { string slowo; int a=0, b=0, c=0, x=0, l=0; cin>>slowo; for(int i=1;i<=slowo.length();i++){ for(int j=i;j<=slowo.length();j++){ if (slowo[j]=='a'){ a++; } else{ if (slowo[j]='b'){ b++; } else{ c++; } } x=max(a,max(b,c)); if((a==x||a==0)&&(b==x||b==0)&&(c==x||c==0)){ l++; } } a=0; b=0; c=0; } cout<<l; 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 | #include<iostream> using namespace std; int main() { string slowo; int a=0, b=0, c=0, x=0, l=0; cin>>slowo; for(int i=1;i<=slowo.length();i++){ for(int j=i;j<=slowo.length();j++){ if (slowo[j]=='a'){ a++; } else{ if (slowo[j]='b'){ b++; } else{ c++; } } x=max(a,max(b,c)); if((a==x||a==0)&&(b==x||b==0)&&(c==x||c==0)){ l++; } } a=0; b=0; c=0; } cout<<l; return 0; } |