Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
2223 大聪明 循环比赛 C++ 编译错误 0 0 MS 0 KB 1094 2019-11-13 18:38:43

Tests(0/0):


#include<iostream> #include<cstdio> #include<cstring> #include<cmath> #include<iomanip> #include<cstdlib> using namespace std; int a[1000][1000],n,m; int main() { // freopen("in.txt","r",stdin); cin>>m; n=1;     for(int i=1;i<=m;i++) n*=2; //system("pause");     //mem(1,n);      int  s=1;     for(int i=1;i<=m;i++) {     // system("pause");       for(int j=1;j<=s;j++)        for(int h=1;h<=s;h++)          {          a[j][h+s]=a[j][h]+s;         // cout<<a[j][h+s];          }         // system("pause");                 for(int j=1;j<=s;j++)        for(int h=1;h<=s;h++)          {          a[j+s][h]=a[j][h+s];          a[j+s][h+s]=a[j][h];          }          s*=2;         // system("pause");                  }     for(int i=1;i<=n;i++)     { for(int j=1;j<=n;j++)      {            printf("%3d",a[i][j]+1);                     }      cout<<endl;     }//mem()     //cout<<o;    //while(1);    return 0; }


测评信息: