CF120B.Quiz League

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A team quiz game called "What? Where? When?" is very popular in Berland. The game is centered on two teams competing. They are the team of six Experts versus the team of the Audience. A person from the audience asks a question and the experts are allowed a minute on brainstorming and finding the right answer to the question. All it takes to answer a typical question is general knowledge and common logic. The question sent be the audience are in envelops lain out in a circle on a round table. Each envelop is marked by the name of the asker's town. Each question is positioned in a separate sector. In the centre of the table is a spinning arrow. Thus, the table rather resembles a roulette table with no ball but with a spinning arrow instead. The host sets off the spinning arrow to choose a question for the experts: when the arrow stops spinning, the question it is pointing at is chosen. If the arrow points at the question that has already been asked, the host chooses the next unanswered question in the clockwise direction. Your task is to determine which will be the number of the next asked question if the arrow points at sector number kk .

输入格式

The first line contains two positive integers nn and kk ( 1<=n<=10001<=n<=1000 and 1<=k<=n1<=k<=n ) — the numbers of sectors on the table and the number of the sector where the arrow is pointing. The second line contains nn numbers: ai=0a_{i}=0 if the question from sector ii has already been asked and ai=1a_{i}=1 if the question from sector ii hasn't been asked yet ( 1<=i<=n1<=i<=n ). The sectors are given in the clockwise order, the first sector follows after the nn -th one.

输出格式

Print the single number — the number of the sector containing the question the experts will be asked. It is guaranteed that the answer exists, that is that not all the questions have already been asked.

输入输出样例

  • 输入#1

    5 5
    0 1 0 1 0
    

    输出#1

    2
    
  • 输入#2

    2 1
    1 1
    

    输出#2

    1
    
首页