結果

問題 No.2958 Placing Many L-s
ユーザー 👑 rin204rin204
提出日時 2024-11-08 22:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,137 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 81,644 KB
最終ジャッジ日時 2024-11-08 22:53:07
合計ジャッジ時間 5,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 125 ms
80,384 KB
testcase_04 AC 89 ms
78,464 KB
testcase_05 AC 101 ms
80,512 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 84 ms
76,776 KB
testcase_08 AC 42 ms
53,504 KB
testcase_09 AC 75 ms
76,416 KB
testcase_10 AC 70 ms
73,344 KB
testcase_11 AC 89 ms
76,552 KB
testcase_12 AC 90 ms
76,800 KB
testcase_13 AC 81 ms
76,152 KB
testcase_14 AC 82 ms
76,672 KB
testcase_15 AC 108 ms
76,160 KB
testcase_16 AC 92 ms
76,464 KB
testcase_17 AC 82 ms
76,544 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 99 ms
80,256 KB
testcase_20 AC 92 ms
78,080 KB
testcase_21 AC 37 ms
52,224 KB
testcase_22 AC 96 ms
80,128 KB
testcase_23 AC 40 ms
51,840 KB
testcase_24 AC 161 ms
77,184 KB
testcase_25 AC 117 ms
76,416 KB
testcase_26 AC 121 ms
76,888 KB
testcase_27 AC 121 ms
76,804 KB
testcase_28 AC 148 ms
81,644 KB
testcase_29 AC 82 ms
76,084 KB
testcase_30 AC 48 ms
60,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    n, m = map(int, input().split())
    if n * m % 8 != 0 or n == 1 or m == 1:
        print(-1)
        return

    rev = False
    if n % 4 == 0:
        n, m = m, n
        rev = True

    A = [[0] * m for _ in range(n)]
    c = 0

    if n % 2 == 1:
        S = [
            [1, 2, 2, 2, 5, 5, 5, 6],
            [1, 2, 3, 4, 4, 4, 5, 6],
            [1, 1, 3, 3, 3, 4, 6, 6],
        ]
        for j in range(0, m, 8):
            for i in range(3):
                for k in range(8):
                    A[i][j + k] = S[i][k] + c
            c += 6
        s = 3
    else:
        s = 0

    S = [
        [1, 1, 1, 2],
        [1, 2, 2, 2],
    ]
    for i in range(s, n, 2):
        for j in range(0, m, 4):
            for ii in range(2):
                for jj in range(4):
                    A[i + ii][j + jj] = S[ii][jj] + c
            c += 2

    print(n * m // 4)

    if rev:
        B = [[0] * n for _ in range(m)]
        for i in range(n):
            for j in range(m):
                B[j][i] = A[i][j]
        A = B

    for row in A:
        print(*row)


for _ in range(int(input())):
    solve()
0