結果

問題 No.2663 Zero-Sum Submatrices
ユーザー KeroruKeroru
提出日時 2024-03-08 21:21:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 96 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 69,888 KB
最終ジャッジ日時 2024-09-29 18:55:59
合計ジャッジ時間 2,639 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 31
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
n=2**n
m=2**m
for i in range(n):
	print(*[m*i+j for j in range(m)])
0