记录编号 593896 评测结果 WWWWWWWWWWWWWWWWWWWW
题目名称 [CSP 2020J]直播获奖 最终得分 0
用户昵称 GravatarGS53 是否通过 未通过
代码语言 C++ 运行时间 0.195 s
提交时间 2024-09-20 21:11:54 内存使用 3.62 MiB
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
int n,w,pn,score[114514];
int main(){
    freopen("csp2020pj_live.in","r",stdin);
    freopen("csp2020pj_live.out","w",stdout);
    //memset(score,0,sizeof(score));
    cin>>n>>w;
    for(int q=1;q<=n;q++){
        scanf("%d",&score[q]);
        //sort(score+1,score+q+1,greater<int>());
        pn=max(1.0,q*w*0.01);
        for(int e=pn+1;e<=n;++e){
            if(score[e]==score[pn]) pn++;
            else break;
        }
        printf("%d",score[pn]);
        printf("%c",' ');
    }
    return 0;
}