結果

問題 No.1851 Regular Tiling
ユーザー mkawa2mkawa2
提出日時 2024-09-11 14:52:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 1,659 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,484 KB
実行使用メモリ 78,368 KB
最終ジャッジ日時 2024-09-11 14:52:43
合計ジャッジ時間 3,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 84 ms
76,416 KB
testcase_02 AC 89 ms
76,672 KB
testcase_03 AC 90 ms
76,416 KB
testcase_04 AC 87 ms
76,544 KB
testcase_05 AC 103 ms
76,416 KB
testcase_06 AC 92 ms
76,544 KB
testcase_07 AC 87 ms
76,920 KB
testcase_08 AC 87 ms
76,288 KB
testcase_09 AC 91 ms
76,560 KB
testcase_10 AC 85 ms
76,544 KB
testcase_11 AC 46 ms
63,744 KB
testcase_12 AC 46 ms
61,824 KB
testcase_13 AC 99 ms
76,876 KB
testcase_14 AC 136 ms
78,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

# def ok(i, j):
#     cnt = 0
#     for di, dj in dij:
#         ni, nj = i+di, j+dj
#         if ni < 0 or nj < 0 or ni >= h or nj >= w: continue
#         cnt += t[i][j] == t[ni][nj]
#     return (t[i][j] == cnt)*1
#
# def dfs(i, j):
#     if j == w: i, j = i+1, 0
#     if i == h: return True
#     mx = (i > 0)+(j > 0)+(i < h-1)+(j < w-1)
#     for a in range(mx+1):
#         t[i][j] = a
#         isok = 1
#         if i: isok &= ok(i-1, j)
#         if i == h-1 and j: isok &= ok(i, j-1)
#         if i == h-1 and j == w-1: isok &= ok(i, j)
#         if isok and dfs(i,j+1):return True
#     return False
#
# h, w = LI()
# t = [[0]*w for _ in range(h)]
# pDB(dfs(0, 0))
# p2D(t)

t=[[0,1,1]*35,[1,2,2]*35,[1,2,2]*35]

def solve():
    h,w=LI()
    si=sj=0
    if h%3==2:si=1
    if w%3==2:sj=1
    for i in range(si,si+h):
        print(*t[i%3][sj:sj+w])

for _ in range(II()):solve()
0