結果

問題 No.2663 Zero-Sum Submatrices
ユーザー chineristACchineristAC
提出日時 2024-03-08 23:58:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 544 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 74,276 KB
最終ジャッジ日時 2024-09-29 20:58:33
合計ジャッジ時間 3,665 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,064 KB
testcase_01 AC 47 ms
55,680 KB
testcase_02 AC 47 ms
55,624 KB
testcase_03 AC 47 ms
55,936 KB
testcase_04 AC 58 ms
65,664 KB
testcase_05 AC 68 ms
70,400 KB
testcase_06 AC 46 ms
55,632 KB
testcase_07 AC 47 ms
55,680 KB
testcase_08 AC 49 ms
55,936 KB
testcase_09 AC 65 ms
68,992 KB
testcase_10 AC 74 ms
73,472 KB
testcase_11 AC 47 ms
55,680 KB
testcase_12 AC 47 ms
55,936 KB
testcase_13 AC 70 ms
71,296 KB
testcase_14 AC 49 ms
55,936 KB
testcase_15 AC 65 ms
68,224 KB
testcase_16 AC 66 ms
69,888 KB
testcase_17 AC 49 ms
56,064 KB
testcase_18 AC 59 ms
65,536 KB
testcase_19 AC 68 ms
70,144 KB
testcase_20 AC 67 ms
68,352 KB
testcase_21 AC 69 ms
70,400 KB
testcase_22 AC 60 ms
66,688 KB
testcase_23 AC 69 ms
70,144 KB
testcase_24 AC 73 ms
72,960 KB
testcase_25 AC 63 ms
68,352 KB
testcase_26 AC 82 ms
74,112 KB
testcase_27 AC 75 ms
74,240 KB
testcase_28 AC 72 ms
71,424 KB
testcase_29 AC 76 ms
74,276 KB
testcase_30 AC 69 ms
73,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from itertools import permutations
from heapq import heappop,heappush
from collections import deque
import random
import bisect

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

n,m = mi()
A = [[0]*(2**m) for i in range(2**n)]

for i in range(2**n):
    for j in range(2**m):

        for b in range(n):
            if i>>b & 1:
                A[i][j] ^= 1<<(b)
        for b in range(m):
            if j>>b & 1:
                A[i][j] ^= 1<<(b+n)
    
    print(*A[i])
0