| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 86561 | sh25_wangtaojie | 迷宫问题 | C++ | 解答错误 | 1 MS | 248 KB | 321 | 2026-04-03 15:34:02 |
#include<bits/stdc++.h> using namespace std; int main() {cout<<"(0,0)"<<endl; cout<<"(1,0)"<<endl; cout<<"(2,0)"<<endl; cout<<"(2,1)"<<endl; cout<<"(2,2)"<<endl; cout<<"(2,3)"<<endl; cout<<"(2,4)"<<endl; cout<<"(3,4)"<<endl; cout<<"(4,4)"<<endl; return 0; }