记录详情

Accepted

/in/foo.c: In function 'main':
/in/foo.c:5:6: warning: unused variable 'count' [-Wunused-variable]
  int count;
      ^~~~~
# 状态 耗时 内存占用
#1 Accepted 1ms 212.0 KiB
#2 Accepted 1ms 220.0 KiB
#3 Accepted 1ms 128.0 KiB
#4 Accepted 0ms 220.0 KiB
#5 Accepted 1ms 128.0 KiB
#6 Accepted 0ms 216.0 KiB
#7 Accepted 0ms 128.0 KiB
#8 Accepted 0ms 220.0 KiB
#9 Accepted 0ms 220.0 KiB

代码

#include<stdio.h>
int main()
{
	int n,m;
	int count;
	int nu=0;
	scanf("%d%d",&n,&m);
	int list[1000];
	int i;
	for(i=0;i<n;i++)
	scanf("%d",&list[i]);
	int j;
	int min;
	int k;
	int temp;
	for(i=0;i<n;i++)
	{
		min=list[i];k=i;
		for(j=i;j<n;j++)
		{
			if(list[j]<min)
			{
				min=list[j];
				k=j;
			}
		}
		temp=list[i];
		list[i]=list[k];
		list[k]=temp;
	}
	i=0;
	while(n>0)
	{
		while(--list[i])
		nu+=n;
		nu+=n;
		n--;
		i++;
	}
	if(nu>=m)
	printf("Yes\n");
	else
	printf("No\n");
}

信息

递交者
类型
递交
题目
P1007 hitwh 2019 新生赛 H Songer and his army
语言
C
递交时间
2020-12-24 17:58:32
评测时间
2020-12-24 17:58:32
评测机
分数
100
总耗时
9ms
峰值内存
220.0 KiB