Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
105195 | 林扬泉 | 棋子移动 | C++ | 解答错误 | 20 | 0 MS | 252 KB | 372 | 2023-10-05 11:26:28 |
#include<bits/stdc++.h> #define int long long using namespace std; int f(int x){ if(x==4){ cout<<"4,5-->9,10\n8,9-->4,5\n2,3-->8,9\n7,8-->2,3\n1,2-->7,8"<<endl; } else{ cout<<x<<","<<x+1<<"-->"<<2*x+1<<","<<2*x+2<<endl; cout<<2*x-1<<","<<2*x<<"-->"<<x<<","<<x-1<<endl; return f(x-1); } } signed main(){ int n; cin>>n; f(n); return 0; }