結果

問題 No.2663 Zero-Sum Submatrices
ユーザー ShirotsumeShirotsume
提出日時 2024-03-08 21:03:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,448 KB
最終ジャッジ日時 2024-09-29 18:49:31
合計ジャッジ時間 3,300 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
54,912 KB
testcase_01 AC 48 ms
55,040 KB
testcase_02 AC 47 ms
55,168 KB
testcase_03 AC 49 ms
55,424 KB
testcase_04 AC 52 ms
55,936 KB
testcase_05 AC 62 ms
65,920 KB
testcase_06 AC 48 ms
55,296 KB
testcase_07 AC 47 ms
55,040 KB
testcase_08 AC 48 ms
55,552 KB
testcase_09 AC 55 ms
61,696 KB
testcase_10 AC 61 ms
65,280 KB
testcase_11 AC 50 ms
55,168 KB
testcase_12 AC 48 ms
55,296 KB
testcase_13 AC 61 ms
65,152 KB
testcase_14 AC 48 ms
55,424 KB
testcase_15 AC 54 ms
61,696 KB
testcase_16 AC 60 ms
65,408 KB
testcase_17 AC 48 ms
55,552 KB
testcase_18 AC 50 ms
55,936 KB
testcase_19 AC 61 ms
65,408 KB
testcase_20 AC 54 ms
61,824 KB
testcase_21 AC 60 ms
66,048 KB
testcase_22 AC 51 ms
56,064 KB
testcase_23 AC 56 ms
62,080 KB
testcase_24 AC 68 ms
67,968 KB
testcase_25 AC 58 ms
62,464 KB
testcase_26 AC 69 ms
68,480 KB
testcase_27 AC 70 ms
69,248 KB
testcase_28 AC 71 ms
68,352 KB
testcase_29 AC 74 ms
70,144 KB
testcase_30 AC 77 ms
72,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 61 - 1
mod = 998244353

n, m = mi()
ans = [[0] * (2 ** m) for _ in range(2 ** n)]
count = 0
for i in range(2 ** n):
    for j in range(2 ** m):
        ans[i][j] = count
        count += 1
for v in ans:
    print(*v)
    
0