Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
105169 凌艺樽 棋子移动 C++ 通过 100 0 MS 248 KB 367 2023-10-05 11:14:44

Tests(5/5):


#include <bits/stdc++.h> using namespace std; int a[1005]; int f(int k) { if(k==4) { cout<<"4,5-->9,10\n8,9-->4,5\n2,3-->8,9\n7,8-->2,3\n1,2-->7,8"; } else { cout<<k<<","<<k+1<<"-->"<<2*k+1<<","<<2*k+2; cout<<"\n"<<2*k-1<<","<<2*k<<"-->"<<k<<","<<k+1<<endl; return f(k-1); } } int main() { int n; cin>>n; f(n); return 0; }


测评信息: