結果

問題 No.1851 Regular Tiling
ユーザー H20H20
提出日時 2022-02-25 22:55:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 256 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 100,540 KB
最終ジャッジ日時 2024-07-03 17:52:41
合計ジャッジ時間 5,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
94,808 KB
testcase_01 AC 201 ms
98,900 KB
testcase_02 AC 202 ms
98,624 KB
testcase_03 AC 199 ms
98,484 KB
testcase_04 AC 198 ms
98,624 KB
testcase_05 AC 199 ms
98,756 KB
testcase_06 AC 203 ms
98,768 KB
testcase_07 AC 200 ms
98,744 KB
testcase_08 AC 201 ms
98,884 KB
testcase_09 AC 207 ms
98,712 KB
testcase_10 AC 202 ms
98,560 KB
testcase_11 AC 162 ms
95,560 KB
testcase_12 AC 158 ms
95,800 KB
testcase_13 AC 220 ms
98,980 KB
testcase_14 AC 256 ms
100,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from pickle import FALSE, TRUE
from re import M
from tkinter.tix import Tree

BIGMAP = []
for _ in range(50):
    BIGMAP.append([0,1,1]*100)
    BIGMAP.append([1,2,2]*100)
    BIGMAP.append([1,2,2]*100)

T = int(input())
for _ in range(T):
    H,W = map(int, input().split())
    hoff = 0
    woff = 0
    if H%3==2:
        hoff+=1
    if W%3==2:
        woff+=1
    MAP = []
    for i in range(hoff,H+hoff):
        MAP.append(BIGMAP[i][woff:W+woff])
    for m in MAP:
        print(*m)


0