哪里有问题?
查看原帖
哪里有问题?
768786
lol_qwq楼主2022/11/30 11:20
#include <bits/stdc++.h>
using namespace std;
int main(){
    int a;
    cin >> a;
    while(a--){
        int b;
        cin >> b;
        while(b--){
            int c;
            cin >> c;
        }
        cout << "1" << " " << b << endl;
    }
    return 0;
}
2022/11/30 11:20
加载中...