比赛 |
2019级快乐小组模拟赛19.9.19 |
评测结果 |
AAAAAAAAAA |
题目名称 |
中考分数 |
最终得分 |
100 |
用户昵称 |
ShallowDream雨梨 |
运行时间 |
0.008 s |
代码语言 |
C++ |
内存使用 |
13.70 MiB |
提交时间 |
2019-09-18 21:59:05 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
const int maxn=10005;
int a[maxn];
bool cmp(const int q,const int w){return q>w;}
int main(){
freopen("mark.in","r",stdin);
freopen("mark.out","w",stdout);
int m,n,x;
cin>>n>>m;
for(int i=1;i<=n;i++)cin>>a[i];
cin>>x;
int qwq=a[x],cq;
sort(a+1,a+1+n,cmp);
for(int i=n;i>=1;i--)
if(a[i]==qwq)cq=i;
int q=n/m;
if(cq%q==0)cout<<cq/q;
else
cout<<cq/q+1;
return 0;
}
/*
10 3
1
1
1
10000
1
1
1
1
1
1
*/