結果

問題 No.2958 Placing Many L-s
ユーザー vwxyzvwxyz
提出日時 2024-11-09 03:08:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 1,441 bytes
コンパイル時間 317 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-11-09 03:09:46
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,608 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,736 KB
testcase_03 AC 110 ms
82,452 KB
testcase_04 AC 110 ms
82,560 KB
testcase_05 AC 113 ms
78,336 KB
testcase_06 AC 44 ms
54,016 KB
testcase_07 AC 116 ms
76,676 KB
testcase_08 AC 65 ms
65,280 KB
testcase_09 AC 94 ms
77,056 KB
testcase_10 AC 95 ms
76,616 KB
testcase_11 AC 90 ms
76,616 KB
testcase_12 AC 101 ms
76,672 KB
testcase_13 AC 107 ms
76,848 KB
testcase_14 AC 107 ms
76,616 KB
testcase_15 AC 132 ms
77,008 KB
testcase_16 AC 100 ms
76,564 KB
testcase_17 AC 95 ms
76,672 KB
testcase_18 AC 43 ms
54,400 KB
testcase_19 AC 108 ms
78,336 KB
testcase_20 AC 102 ms
81,064 KB
testcase_21 AC 43 ms
53,888 KB
testcase_22 AC 106 ms
78,464 KB
testcase_23 AC 45 ms
54,144 KB
testcase_24 AC 239 ms
77,796 KB
testcase_25 AC 138 ms
77,596 KB
testcase_26 AC 140 ms
77,408 KB
testcase_27 AC 165 ms
77,772 KB
testcase_28 AC 195 ms
80,512 KB
testcase_29 AC 114 ms
76,612 KB
testcase_30 AC 70 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T=int(input())
for t in range(T):
    N,M=map(int,input().split())
    C0=[[0,0,0,1],[0,1,1,1]]
    C1=[[0,0,2,3,3,3,5,5],[0,1,2,2,2,3,4,5],[0,1,1,1,4,4,4,5]]
    XYC0=[(x,y,C0[x][y]) for x in range(2) for y in range(4)]
    XYC1=[(x,y,C1[x][y]) for x in range(3) for y in range(8)]
    ans_lst=[[None]*M for n in range(N)]
    def solve(N,M):
        if N%2==0 and M%4==0:
            retu=[[None]*M for n in range(N)]
            cur=1
            for n in range(0,N,2):
                for m in range(0,M,4):
                    for x,y,c in XYC0:
                        retu[n+x][m+y]=cur+c
                    cur+=2
        elif N>=2 and M%8==0:
            cur=1
            retu=[[None]*M for n in range(N)]
            if N%2:
                for m in range(0,M,8):
                    for x,y,c in XYC1:
                        retu[x][m+y]=cur+c
                    cur+=6
            for n in range(3 if N%2 else 0,N,2):
                for m in range(0,M,4):
                    for x,y,c in XYC0:
                        retu[n+x][m+y]=cur+c
                    cur+=2
        elif N%4==0 and M%2==0 or N%8==0 and M>=2:
            retu=solve(M,N)
            retu=[[retu[m][n] for m in range(M)] for n in range(N)]
        else:
            retu=None
        return retu
    ans_lst=solve(N,M)
    if ans_lst==None:
        print(-1)
    else:
        print(N*M//4)
        for n in range(N):
            print(*ans_lst[n])

0