Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
41820 | lmz120809 | 蚱蜢跳跃 | C++ | 编译错误 | 0 MS | 0 KB | 457 | 2024-02-23 12:07:06 |
#include<bits/stdc++.h> using namespace std; int main() { char str[1000]; string str; cin>>str; int minn=-1,tmp,last=0; bool flag=false; for(int i=0;i<strlen(str)+1;i++){ if(str[i]=='A'||str[i]=='E'||str[i]=='I'||str[i]=='O'||str[i]=='U'){ flag=true; tmp=i-last; if(tmp>minn) minn=tmp; last=i; } if(str[i]=='\0') minn=max(minn,i-last); } if(flag) cout<<minn<<endl; else cout<<strlen(str)+1<<endl; return 0; }