• + 0 comments

    and if you wanted to make it really compact..

    n,k,q = list(map(int, input().split()))
    a = list(map(int, input().split()))
    print(*(a[(int(input())-k)%n] for _ in range(q)),sep='\n')