Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
105150 hky2023 棋子移动 C++ 解答错误 0 0 MS 240 KB 242 2023-10-05 11:09:39

Tests(0/5):


#include<bits/stdc++.h> using namespace std; int f(int k) { if(k==4) { cout<<"4,5-->9,10\n"; } else { cout<<k<<","<<k+1<<"-->"<<2*k+1<<","<<2*k+2<<endl; } } int main() { int n; cin>>n; f(n); return 0; }


测评信息: