結果

問題 No.2958 Placing Many L-s
ユーザー vwxyzvwxyz
提出日時 2024-11-09 03:01:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,443 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-11-09 03:01:35
合計ジャッジ時間 8,989 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,096 KB
testcase_02 AC 44 ms
52,864 KB
testcase_03 AC 112 ms
82,432 KB
testcase_04 AC 115 ms
82,048 KB
testcase_05 WA -
testcase_06 AC 48 ms
54,400 KB
testcase_07 WA -
testcase_08 AC 64 ms
65,024 KB
testcase_09 AC 106 ms
76,928 KB
testcase_10 WA -
testcase_11 AC 105 ms
76,416 KB
testcase_12 WA -
testcase_13 AC 106 ms
76,928 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 109 ms
76,416 KB
testcase_18 AC 46 ms
54,272 KB
testcase_19 WA -
testcase_20 AC 111 ms
81,280 KB
testcase_21 AC 45 ms
54,400 KB
testcase_22 AC 114 ms
78,464 KB
testcase_23 AC 46 ms
53,888 KB
testcase_24 AC 234 ms
77,868 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

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,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