結果

問題 No.1851 Regular Tiling
ユーザー ygd.ygd.
提出日時 2022-02-27 19:40:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,069 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-07-05 19:01:41
合計ジャッジ時間 3,214 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,568 KB
testcase_01 AC 93 ms
76,800 KB
testcase_02 AC 97 ms
76,800 KB
testcase_03 AC 95 ms
76,288 KB
testcase_04 AC 93 ms
76,672 KB
testcase_05 AC 93 ms
76,672 KB
testcase_06 AC 94 ms
76,288 KB
testcase_07 AC 90 ms
77,056 KB
testcase_08 AC 92 ms
76,800 KB
testcase_09 AC 95 ms
76,416 KB
testcase_10 AC 93 ms
76,544 KB
testcase_11 AC 62 ms
67,328 KB
testcase_12 AC 57 ms
66,304 KB
testcase_13 AC 106 ms
77,184 KB
testcase_14 AC 137 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#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]

A = []
MAX = 110
for i in range(MAX):
    temp = []
    for j in range(MAX):
        if i%3 == j%3 == 0:
            v = 0
        elif i%3 == 0 or j %3 == 0:
            v = 1
        else:
            v = 2
        temp.append(v)
    A.append(temp)
#print(A)

def main():
    T = int(input())
    for _ in range(T):
        H,W = map(int,input().split())
        if H%3 == 2:
            a = 1
        else:
            a = 0
        if W%3 == 2:
            b = 1
        else:
            b = 0
        for i in range(H):
            #print(a,b)
            print(*A[i+a][b:b+W])

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