본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25904번 안녕 클레오파트라 세상에서 제일가는 포테이토칩

by 현장 2022. 11. 18.

-Code

n, x = map(int, input().split())
voice = list(map(int, input().split()))
idx = 0
while 1:
    if voice[idx % n] < x:
        print(idx % n + 1)
        break
    idx += 1
    x += 1