Why???

caisen 2024-09-08 16:06:01 8

#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 求大佬解答

{{ vote && vote.total.up }}