代码拉取完成,页面将自动刷新
https://www.nowcoder.com/practice/9d1559511b3849deaa71b576fa7009dc?tpId=85&&tqId=29842&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <string>
using namespace std;
bool IsCircle(string& str)
{
int begin=0;
int end=str.size()-1;
while(begin<end)
{
if(str[begin] != str[end])
{
return false;
}
begin++;
end--;
}
return true;
}
int main(){
string A, B;
getline(cin, A);
getline(cin, B);
int count=0;
string tmp;
for(int i=0; i<=A.size(); i++)
{
tmp=A;
tmp.insert(i, B);
if(IsCircle(tmp))
{
count++;
}
}
cout<<count<<endl;
return 0;
}
https://www.nowcoder.com/practice/5a304c109a544aef9b583dce23f5f5db?tpId=85&&tqId=29858&rp=1&ru=/activity/oj&qru=/ta/2017test/question-ranking
#include <iostream>
#include <vector>
using namespace std;
int GetMax(int a, int b)
{
return (a) > (b) ? (a) : (b);
}
int main()
{
int N=0;
cin>>N;
vector<int> v(N);
for(int i=0; i<N; i++)
{
cin>>v[i];
}
//动归
int max=v[0], ret=v[0];
for(int i=0; i<N; i++)
{
max=GetMax(max+v[i], v[i]);
if(max>ret)
{
ret=max;
}
}
cout<<ret<<endl;
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。