| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 78018 | sh25_shenpy | 01字串(暴力枚举) | C++ | 通过 | 1 MS | 236 KB | 224 | 2025-12-26 15:16:32 |
#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; }