码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 158A Next Round

时间:2018-06-17 14:16:29      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:get   namespace   problem   round   span   ems   分享   style   info   

技术分享图片

题目链接

http://codeforces.com/problemset/problem/158/A

#include<iostream>
#include<string>
using namespace std;

int main()
{
    int n,k;
    int num=0;
    int arr[100]={0};
    cin>>n>>k;
    for(int i=0;i<n;i++)
    {
        cin>>arr[i];
    }
    int i;
    for(i=0;i<k&&arr[i]!=0;i++)
    {
        num++;
    }
    int flag=1;
    while(arr[i-1]==arr[i]&&arr[i]!=0)
    {
        num++;
        i++;

    }
    cout<<num;

    return 0;
}

 

Codeforces 158A Next Round

标签:get   namespace   problem   round   span   ems   分享   style   info   

原文地址:https://www.cnblogs.com/CMlhc/p/9192702.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!