Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
57140 202103Clyde 硬币翻转 C++ 通过 100 0 MS 248 KB 290 2022-08-03 20:15:08

Tests(5/5):


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


测评信息: