| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 8004 | 陈颖钧 | s01串 | C++ | Wrong Answer | 0 | 0 MS | 260 KB | 224 | 2025-03-23 14:08:51 |
#include<bits/stdc++.h> using namespace std; int i,n; string a; int main(){ cin>>n; for(i=0;i<n;i++){ if(a=="0"){ a=a+"1"; }else{ a=a+"01"; } } cout<<a; }