Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
57109 董承诺 硬币翻转 C++ 通过 100 0 MS 252 KB 360 2022-08-03 19:04:36

Tests(5/5):


#include<bits/stdc++.h> using namespace std; bool a[101]; int b; int main(){ cin>>b; cout<<b<<endl; for(int i=1;i<=b;i++){ for(int j=1;j<=b;j++){ if(j!=i){ if(a[j]==1) a[j]=0; else a[j]=1; } cout<<a[j]; } cout<<endl; } return 0; }


测评信息: