結果

問題 No.2663 Zero-Sum Submatrices
ユーザー PNJPNJ
提出日時 2024-03-08 22:08:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 182 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 81,872 KB
実行使用メモリ 72,796 KB
最終ジャッジ日時 2024-09-29 19:42:15
合計ジャッジ時間 2,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,184 KB
testcase_01 AC 35 ms
52,092 KB
testcase_02 AC 32 ms
53,532 KB
testcase_03 AC 34 ms
53,888 KB
testcase_04 AC 34 ms
54,596 KB
testcase_05 AC 44 ms
63,532 KB
testcase_06 AC 34 ms
52,592 KB
testcase_07 AC 33 ms
52,372 KB
testcase_08 AC 35 ms
52,284 KB
testcase_09 AC 39 ms
59,928 KB
testcase_10 AC 42 ms
63,200 KB
testcase_11 AC 32 ms
52,340 KB
testcase_12 AC 34 ms
53,604 KB
testcase_13 AC 43 ms
63,296 KB
testcase_14 AC 33 ms
53,488 KB
testcase_15 AC 39 ms
59,404 KB
testcase_16 AC 44 ms
63,128 KB
testcase_17 AC 35 ms
53,812 KB
testcase_18 AC 36 ms
53,744 KB
testcase_19 AC 43 ms
64,512 KB
testcase_20 AC 37 ms
58,900 KB
testcase_21 AC 46 ms
63,868 KB
testcase_22 AC 36 ms
53,960 KB
testcase_23 AC 40 ms
58,892 KB
testcase_24 AC 50 ms
67,500 KB
testcase_25 AC 41 ms
60,976 KB
testcase_26 AC 49 ms
66,812 KB
testcase_27 AC 51 ms
68,560 KB
testcase_28 AC 50 ms
67,508 KB
testcase_29 AC 54 ms
69,940 KB
testcase_30 AC 56 ms
72,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
N = 1 << n
M = 1 << m

A = [[0 for j in range(M)] for i in range(N)]
for i in range(N):
	for j in range(M):
		A[i][j] = i*M + j

for a in A:
	print(*a)
0