A. Next Round难度: 水题 / 知识点: 模拟
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Next Round难度: 水题 / 知识点: 模拟相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/158/A
#include<bits/stdc++.h>
using namespace std;
const int N=1e5+10;
int n,m,cnt,s[N];
int main(void)
{
cin>>n>>m;
for(int i=1;i<=n;i++) cin>>s[i];
int temp=s[m];
for(int i=1;i<=n;i++) if(s[i]&&temp<=s[i]) cnt++;
cout<<cnt<<endl;
return 0;
}
以上是关于A. Next Round难度: 水题 / 知识点: 模拟的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #589 (Div. 2) A. Distinct Digits
Codeforces Round #436 A. Fair Game
Codeforces Beta Round #1 A. Theatre Square
Codeforces Round #343 (Div. 2) A. Far Relative’s Birthday Cake