結果

問題 No.2663 Zero-Sum Submatrices
ユーザー NPNP
提出日時 2024-03-08 21:12:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 512 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-29 18:52:50
合計ジャッジ時間 2,720 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 36 ms
52,224 KB
testcase_04 AC 39 ms
52,864 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 34 ms
51,712 KB
testcase_08 WA -
testcase_09 AC 45 ms
59,136 KB
testcase_10 AC 47 ms
62,464 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 48 ms
62,720 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 56 ms
62,720 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 48 ms
59,392 KB
testcase_24 AC 57 ms
63,488 KB
testcase_25 WA -
testcase_26 AC 64 ms
68,224 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 66 ms
68,352 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, m):
    N = 1 << (n + m)
    ans = [0] * N
    for i in range(N):
        ans[i] = i ^ (i // 2)
    if m & 1:
        for i in range(N):
            ans[i] ^= ans[i] >> m
            ans[i] ^= ans[i] << m
    for i in range(1 << n):
        for j in range(1 << m):
            if ans[i << m | j] < 0:  # 条件を満たさない場合.
                print(-1, end=' ')
            else:
                print(ans[i << m | j], end=' ')
        print()

n, m = map(int, input().split())
solve(n, m)
0