-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
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 15238번 Pirates (0) | 2022.11.20 |
---|---|
[백준/파이썬] 13617번 Handebol (0) | 2022.11.19 |
[백준/파이썬] 25270번 99 Problems (0) | 2022.11.17 |
[백준/파이썬] 25985번 Fastestest Function (0) | 2022.11.16 |
[백준/파이썬] 25527번 Counting Peaks of Infection (0) | 2022.11.15 |