记录编号 219575 评测结果 AAAAAAAAAA
题目名称 中考分数 最终得分 100
用户昵称 Gravatarliu_runda 是否通过 通过
代码语言 C++ 运行时间 0.003 s
提交时间 2016-01-15 10:07:19 内存使用 0.31 MiB
显示代码纯文本
#include<cstdio>
#include<algorithm>
using namespace std;
struct student{
	int score,num;
}data[1010];
bool cmp(const student &a,const student &b){
	return a.score>b.score;	
}
int main(){
	freopen("mark.in","r",stdin);
	freopen("mark.out","w",stdout);
	int n,m;
	scanf("%d %d",&n,&m);
	m=n/m;
	for(int i = 1;i<=n;++i){
		scanf("%d",&data[i].score);
		data[i].num = i;
	}
	int x,x_score;
	scanf("%d",&x);
	x_score = data[x].score;
	stable_sort(data+1,data+n+1,cmp);
	int r=n;

	while(data[r].num!=x)r--;
	printf("%d",(r-1)/m+1);
	fclose(stdin);fclose(stdout);
	return 0;
}