0
已解决
姜思远
初级光能
初级光能
1163 插入字符串并删除
Runtime Error:50分
姜思远的测评结果:
测试点#1
测评结果 : Runtime Error
时间 : 0ms
偷看一下数据
测试点#2
测评结果 : Runtime Error
时间 : 0ms
偷看一下数据
测试点#3
测评结果 : Accepted
时间 : 0ms
测试点#4
测评结果 : Accepted
时间 : 0ms
测试点#5
测评结果 : Runtime Error
时间 : 0ms
偷看一下数据
测试点#6
测评结果 : Accepted
时间 : 0ms
测试点#7
测评结果 : Runtime Error
时间 : 0ms
偷看一下数据
测试点#8
测评结果 : Runtime Error
时间 : 0ms
偷看一下数据
测试点#9
测评结果 : Accepted
时间 : 0ms
测试点#10
测评结果 : Accepted
时间 : 0ms
我的提交(cpp):
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <map>
#include <algorithm>
#include <cstring>
#include <cstdlib>
#include <bits/stdc++.h>
using namespace std;
int main()
{
string a,b;
int m,x,y,n=a.size();
getline(cin,a);
getline(cin,b);
cin>>m>>x>>y;
if(m<=n)
{
a=a+b;
a=a.erase(x-1,y);
cout<<a;
}
else
{
a=a.insert(m-1,b);
a=a.erase(x-1,y);
cout<<a;
}
return 0;
}