Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
54350 | zhangweiran | 01字串(暴力枚举) | C++ | 通过 | 1 MS | 248 KB | 224 | 2024-10-27 11:16:36 |
#include<iostream> using namespace std; int main(){ int a,b,c,d,e; for(a=0;a<2;a++) for(b=0;b<2;b++) for(c=0;c<2;c++) for(d=0;d<2;d++) for(e=0;e<2;e++) cout<<a<<b<<c<<d<<e<<endl; return 0; }