結果

問題 No.2663 Zero-Sum Submatrices
ユーザー keisuke6keisuke6
提出日時 2024-03-08 22:08:27
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 1,695 ms
コンパイル使用メモリ 199,636 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-29 19:42:18
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int H,W;
    cin>>H>>W;
    for(int i=0;i<(1<<H);i++){
    	for(int j=0;j<(1<<W);j++) cout<<i*(1<<W)+j<<' ';
    	cout<<endl;
    }
}
0