比赛 期末考试3 评测结果 WAWWAEEEEEWWWAAAAAAWWWWWWWWWWWWWWWWWWWWWWWWWAAAAAAAAAAAAAAAAAAAAAAAAA
题目名称 hope I can sort matrix 最终得分 58
用户昵称 梦那边的美好ME 运行时间 8.554 s
代码语言 C++ 内存使用 15.27 MiB
提交时间 2026-02-11 11:32:21
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll n,m;
vector <ll> a[110000];

int main(){
    freopen("hopeicansortmatrix.in","r",stdin);
    freopen("hopeicansortmatrix.out","w",stdout);
    ios::sync_with_stdio(0);
    cin.tie(0);cout.tie(0);
    cin>>n>>m;
    for (int i=1,x;i<=n;i++){
        for (int j=1;j<=m;j++){
            cin>>x;
            a[i].push_back(x);
        }
    }
    cout<<"No";
    return 0;
}