Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
107036 | 杜洛雨泽 | 19按规则查找数组中的数据 | C++ | Accepted | 1 MS | 276 KB | 287 | 2025-01-17 11:12:32 |
#include<bits/stdc++.h> using namespace std; int main() { int n, m, j = 1; cin >> n >> m; int a[n]; for (int i = 0; i < n; i++) { cin >> a[i]; } cout << a[0]; for (int i = 1; i < m; i++) { j = a[j - 1]; cout << " " << a[j - 1]; } cout << endl; return 0; }