Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
52414 OscarWLY 连续数字 C++ 通过 0 MS 244 KB 317 2024-10-05 14:18:23

Tests(20/20):


#include<bits/stdc++.h> using namespace std; int main() { int n,m,cnt=0; cin>>n>>m; while(n>0) { cnt++; n--; m--; cout<<1; if(n==0) break; if(cnt==2) { n--; cnt=0; cout<<0; } if(m==0) { for(int i=1;i<=n;i++) cout<<0; break; } } return 0; }


测评信息: