0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:05:25 +00:00
OI-codes/Luogu/problem/P3156/P3156.cpp
2021-01-02 15:30:52 +08:00

19 lines
291 B
C++

// R38858817
#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m, a[10000005], q;
cin >> n >> m;
for (int i = 0; i < n; i++) {
cin >> a[i];
}
for (int i = 0; i < m; i++) {
cin >> q;
cout << a[q-1] << endl;
}
return 0;
}