洛谷题单指南-线性表-P3156 【深基15.例1】询问学号

原题链接:https://www.luogu.com.cn/problem/P3156

解题思路:简单的数组题,唯一需要注意的是读写的数据量比较大,输入输出最好用scanf、printf

100分代码:

#include <bits/stdc++.h>
using namespace std;

const int N = 2e6 + 5;

int a[N], n, m;

int main()
{
    scanf("%d%d", &n, &m);
    for(int i = 1; i <= n; i++) cin >> a[i];

    int q;
    while(m--)
    {
        scanf("%d", &q);
        printf("%d\n", a[q]);
    }

    return 0;
}

 

posted @ 2024-03-11 09:25  五月江城  阅读(35)  评论(0编辑  收藏  举报