Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
107835 | 朱悦晨 | 迷宫问题 | C++ | 解答错误 | 53 | 1 MS | 296 KB | 316 | 2023-10-28 11:26:11 |
#include<bits/stdc++.h> using namespace std; int a[105][105]; int n,m; void work(int x,int y) { if(x==m && y==n){ cout<<x<<" "<<y<<endl; exit(0); } else cout<<-1; } int main() { cin>>m>>n; for(int i=0;i<m;i++){ for(int j=0;j<n;j++){ cin>>a[i][j]; } } work(1,1); return 0; }