結果

問題 No.2112 All 2x2 are Equal
ユーザー ygd.ygd.
提出日時 2022-10-28 22:46:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 742 ms / 2,000 ms
コード長 1,595 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,984 KB
最終ジャッジ日時 2024-07-06 01:59:44
合計ジャッジ時間 12,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,880 KB
testcase_01 AC 25 ms
10,880 KB
testcase_02 AC 44 ms
11,904 KB
testcase_03 AC 40 ms
11,904 KB
testcase_04 AC 299 ms
30,080 KB
testcase_05 AC 335 ms
31,616 KB
testcase_06 AC 572 ms
47,616 KB
testcase_07 AC 196 ms
22,400 KB
testcase_08 AC 468 ms
40,320 KB
testcase_09 AC 53 ms
12,928 KB
testcase_10 AC 225 ms
24,320 KB
testcase_11 AC 157 ms
19,968 KB
testcase_12 AC 215 ms
23,552 KB
testcase_13 AC 519 ms
43,392 KB
testcase_14 AC 49 ms
12,544 KB
testcase_15 AC 438 ms
38,656 KB
testcase_16 AC 27 ms
10,880 KB
testcase_17 AC 469 ms
39,552 KB
testcase_18 AC 37 ms
11,648 KB
testcase_19 AC 60 ms
12,928 KB
testcase_20 AC 39 ms
11,904 KB
testcase_21 AC 538 ms
44,160 KB
testcase_22 AC 47 ms
12,544 KB
testcase_23 AC 38 ms
11,776 KB
testcase_24 AC 72 ms
13,952 KB
testcase_25 AC 93 ms
15,232 KB
testcase_26 AC 71 ms
13,952 KB
testcase_27 AC 141 ms
19,072 KB
testcase_28 AC 323 ms
31,360 KB
testcase_29 AC 60 ms
13,056 KB
testcase_30 AC 187 ms
22,144 KB
testcase_31 AC 361 ms
32,512 KB
testcase_32 AC 628 ms
50,176 KB
testcase_33 AC 605 ms
50,176 KB
testcase_34 AC 742 ms
57,984 KB
testcase_35 AC 611 ms
50,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from re import A
import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
#from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    H,W = map(int,input().split())

    Flag = False
    if H%2 == 1:
        if W%2 == 0:
            H,W = W,H
            Flag = True
    
    A = [[0]*W for _ in range(H)]

    s = H*W+1
    num = 0
    for i in range(H//2):
        for j in range(W):
            num += 1
            if j%2 == 0:
                A[i*2][j] = num
                A[i*2+1][j] = s-num
            else:
                A[i*2][j] = s-num
                A[i*2+1][j] = num

    if H%2 == 1:
        for j in range(W):
            num += 1
            A[H-1][j] = num
        # print(A)
        for j in range(W//4):
            nj = 2*j+1
            # print(nj,W-1-nj)
            A[H-1][nj],A[H-1][W-1-nj] = A[H-1][W-1-nj],A[H-1][nj]

    print('Yes')
    if not Flag:
        for ret in A:
            print(*ret)
    else:
        B = [[0]*H for _ in range(W)]
        for i in range(H):
            for j in range(W):
                B[j][i] = A[i][j]
        for ret in B:
            print(*ret)

if __name__ == '__main__':
    main()
0