| 比赛 |
期末考试3 |
评测结果 |
WAWWAWAAWAWWWAAAAAAWWWWWWWWWWWWWWWWWWWWWWWWWAAAAAAAAAAAAAAAAAAAAAAAAA |
| 题目名称 |
hope I can sort matrix |
最终得分 |
61 |
| 用户昵称 |
zhyn |
运行时间 |
7.152 s |
| 代码语言 |
C++ |
内存使用 |
3.70 MiB |
| 提交时间 |
2026-02-11 11:33:17 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int n,m;
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
freopen("hopeicansortmatrix.in","r",stdin);
freopen("hopeicansortmatrix.out","w",stdout);
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
int x;
cin>>x;
}
}
cout<<"No\n";
return 0;
}