Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
2408 | 未知用户 | 循环比赛 | C++ | 通过 | 100 | 1 MS | 520 KB | 535 | 2019-11-24 18:39:21 |
#include<iostream> #include<iomanip> using namespace std; const int N = 1050; int a[N][N]; int main(){ int m,n,half; cin>>m; n=1<<m,half=1; a[0][0]=1; while (m--){ for (int i=0; i<half; i++) for (int j=0; j<half; j++) a[i][j+half]=a[i][j]+half; for (int i=0; i<half; i++) for (int j=0; j<half; j++){ a[i+half][j]=a[i][j]+half; a[i+half][j+half]=a[i][j]; } half*=2; } for (int i=0; i<n; i++){ for (int j=0; j<n; j++) cout<<setw(3)<<a[i][j]; cout<<endl; } return 0; }