被数据卡到了,注意题意,小心点。
复制代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18#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内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复