记录详情

Accepted


  
# 状态 耗时 内存占用
#1 Accepted 2ms 332.0 KiB
#2 Accepted 1ms 348.0 KiB
#3 Accepted 1ms 344.0 KiB
#4 Accepted 1ms 348.0 KiB
#5 Accepted 1ms 332.0 KiB

代码

#include<iostream>
#include<cstdlib>
using namespace std;

int main()
{
	int n;
	cin>>n;
	int a[n+1];
	for(int i=1;i<=n;++i)
		cin>>a[i-1];
	int s;
	cin>>s;
	int ifk=0;
	for(int i=1;i<=n;++i)
		if(s<a[i-1])
		{
			for(int j=n-1;j>=i-1;--j)
				a[j+1]=a[j];
			++n;
			a[i-1]=s;
			ifk=1;
			break;
		}
	if(ifk==0)
	{
		a[n]=s;
		++n;
	}
	for(int i=1;i<=n;++i)
		cout<<a[i-1]<<" ";
	system("pause");
	return 0;
}

信息

递交者
类型
递交
题目
P1017 查找插入问题
语言
C++
递交时间
2019-07-30 10:51:58
评测时间
2019-07-30 10:51:58
评测机
分数
50
总耗时
8ms
峰值内存
348.0 KiB