记录编号 351361 评测结果 WWAWWWWWWW
题目名称 中考分数 最终得分 10
用户昵称 GravatarsrO cwm Orz 是否通过 未通过
代码语言 C++ 运行时间 0.006 s
提交时间 2016-11-16 14:54:31 内存使用 0.32 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int n,m,x;
struct D{
	int v,id;
	bool operator < (const D& rhs) const{
		return v > rhs.v;
	}
}a[1010];
 
int main(){
	#ifndef DEBUG
		string FileName="mark";
		freopen((FileName+".in").c_str(),"r",stdin);
		freopen((FileName+".out").c_str(),"w",stdout);
	#endif
	scanf("%d%d",&n,&m);
	for(int i = 1; i <= n; i++)scanf("%d",&a[i].v),a[i].id=i;
	scanf("%d",&x);
	stable_sort(a+1,a+n+1);
	int pos;
	for(int i = 1; i <= n; i++){
		if(a[i].id == x){
			pos = i;
			break;
		}
	}
	int size = n/m;
	printf("%d",(int)(pos/size));
}