Run ID Author Problem Lang Verdict Score Time Memory Code Length Submit Time
57207 尹翊泽 硬币翻转 C++ Accepted 100 0 MS 252 KB 380 2022-08-04 09:24:57

Tests(5/5):


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


Judgement Protocol: