結果

問題 No.2663 Zero-Sum Submatrices
ユーザー なえしらなえしら
提出日時 2024-07-18 23:18:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 106 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 68,568 KB
最終ジャッジ日時 2024-07-18 23:18:15
合計ジャッジ時間 2,675 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,172 KB
testcase_01 AC 34 ms
52,828 KB
testcase_02 AC 32 ms
52,496 KB
testcase_03 AC 32 ms
52,160 KB
testcase_04 AC 33 ms
53,024 KB
testcase_05 AC 43 ms
61,620 KB
testcase_06 AC 34 ms
52,364 KB
testcase_07 AC 34 ms
52,828 KB
testcase_08 AC 33 ms
52,612 KB
testcase_09 AC 37 ms
59,260 KB
testcase_10 AC 42 ms
61,684 KB
testcase_11 AC 32 ms
52,868 KB
testcase_12 AC 32 ms
52,804 KB
testcase_13 AC 40 ms
63,292 KB
testcase_14 AC 33 ms
52,476 KB
testcase_15 AC 41 ms
59,808 KB
testcase_16 AC 43 ms
62,608 KB
testcase_17 AC 38 ms
53,220 KB
testcase_18 AC 38 ms
53,236 KB
testcase_19 AC 50 ms
63,040 KB
testcase_20 AC 40 ms
59,924 KB
testcase_21 AC 44 ms
61,996 KB
testcase_22 AC 39 ms
53,528 KB
testcase_23 AC 40 ms
60,484 KB
testcase_24 AC 44 ms
62,332 KB
testcase_25 AC 40 ms
60,736 KB
testcase_26 AC 47 ms
63,512 KB
testcase_27 AC 47 ms
64,292 KB
testcase_28 AC 48 ms
64,724 KB
testcase_29 AC 54 ms
65,892 KB
testcase_30 AC 58 ms
68,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
N, M = 2**n, 2**m

for q in range(0, N * M, M):
  print(*range(q, q + M))
0