num = int(input())
for i in range(num):
c=[]
count=0
M , N = map(int, input().split())
c = list(input().split())
ans=[0]*M
ans[N] = 1
while (1):
if c.index(max(c)) == 0:
del c[0]
count+=1
if ans[0] == 1:
print(count)
break
else:
del ans[0]
else:
c.append(c[0])
del c[0]
ans.append(ans[0])
del ans[0]
'백준 알고리즘 > 시뮬레이션' 카테고리의 다른 글
백준 1021번 파이썬 (0) | 2018.09.18 |
---|---|
백준 8958번 파이썬 (0) | 2018.09.18 |
백준 10845 파이썬 (0) | 2018.09.16 |
백준 9012 파이썬 (0) | 2018.09.16 |
백준 1874 파이썬 (0) | 2018.09.14 |