我是靠谱客的博主 震动乐曲,这篇文章主要介绍codeforce#158A,现在分享给大家,希望可以做个参考。

被数据卡到了,注意题意,小心点。

#include <iostream>
using namespace std;
int main(){
int n,m;
int n1[105];
while(cin >> n >> m &&n>=m){
int f1=0;
for(int i=0;i<n;i++)
cin >> n1[i];
for(int j=0;j<n;j++){
if(n1[j]>=n1[m-1]&&n1[j]!=0){
f1++;
}
}
cout << f1 << endl;
}
return 0;
}

在 5 5

3 2 1 0 0 这组数据卡了    

最后

以上就是震动乐曲最近收集整理的关于codeforce#158A的全部内容,更多相关codeforce#158A内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(118)

评论列表共有 0 条评论

立即
投稿
返回
顶部