Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
17017 wanyichen 01字串(暴力枚举) C++ 无测评数据 0 MS 0 KB 273 2023-05-10 20:26:33

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ for(int i=0;i<=1;i++){ for(int j=0;j<=1;j++){ for(int k=0;k<=1;k++){ for(int l=0;l<=1;l++){ for(int m=0;m<=1;m++){ cout<<i<<j<<k<<l<<m<<endl; } } } } } return 0; }