結果

問題 No.2663 Zero-Sum Submatrices
ユーザー 寝癖寝癖
提出日時 2024-03-08 21:05:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 177 bytes
コンパイル時間 312 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 69,812 KB
最終ジャッジ日時 2024-09-29 18:50:14
合計ジャッジ時間 2,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,432 KB
testcase_01 AC 36 ms
52,816 KB
testcase_02 AC 38 ms
52,128 KB
testcase_03 AC 36 ms
53,000 KB
testcase_04 AC 37 ms
52,460 KB
testcase_05 AC 46 ms
62,864 KB
testcase_06 AC 37 ms
52,836 KB
testcase_07 AC 35 ms
52,672 KB
testcase_08 AC 35 ms
53,852 KB
testcase_09 AC 40 ms
59,172 KB
testcase_10 AC 45 ms
62,736 KB
testcase_11 AC 36 ms
52,192 KB
testcase_12 AC 36 ms
53,120 KB
testcase_13 AC 45 ms
62,604 KB
testcase_14 AC 36 ms
53,072 KB
testcase_15 AC 41 ms
58,648 KB
testcase_16 AC 46 ms
63,968 KB
testcase_17 AC 36 ms
52,364 KB
testcase_18 AC 37 ms
54,508 KB
testcase_19 AC 45 ms
62,980 KB
testcase_20 AC 42 ms
58,644 KB
testcase_21 AC 47 ms
64,164 KB
testcase_22 AC 38 ms
54,824 KB
testcase_23 AC 42 ms
59,020 KB
testcase_24 AC 52 ms
64,992 KB
testcase_25 AC 43 ms
59,196 KB
testcase_26 AC 51 ms
64,792 KB
testcase_27 AC 54 ms
66,308 KB
testcase_28 AC 53 ms
65,688 KB
testcase_29 AC 56 ms
68,256 KB
testcase_30 AC 58 ms
69,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
N = 1<<n
M = 1<<m
a = [[0]*M for _ in range(N)]
for i in range(N):
    for j in range(M):
        a[i][j] = i * M + j

for r in a:
    print(*r)
0