#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
LL n, m;
LL a[ 2147483647], b[2147483647], c[ 2147483647];
int main()
{
cin >> n >> m;
for(int i = 1; i <= n;i ++)
{
cin >> a[i];
}
for(int j = 1; j <= m;j ++)
{
cin >> b[j];
}
for(int i = 1; i <= m; i ++)
{
c[i] = a[b[i]];
}
for(int i= 1; i <= m; i ++)
{
cout << c[i] << endl;
}
return 0;
}
为啥b输入会多几次? @root @CPP 求大佬解答