結果

問題 No.1851 Regular Tiling
ユーザー tamatotamato
提出日時 2022-02-25 21:43:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 83,144 KB
実行使用メモリ 79,628 KB
最終ジャッジ日時 2024-07-03 16:27:43
合計ジャッジ時間 3,094 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,788 KB
testcase_01 AC 89 ms
77,020 KB
testcase_02 AC 104 ms
77,388 KB
testcase_03 AC 86 ms
76,996 KB
testcase_04 AC 88 ms
77,456 KB
testcase_05 AC 87 ms
76,928 KB
testcase_06 AC 92 ms
77,424 KB
testcase_07 AC 87 ms
77,164 KB
testcase_08 AC 85 ms
77,260 KB
testcase_09 AC 92 ms
77,040 KB
testcase_10 AC 87 ms
77,064 KB
testcase_11 AC 52 ms
66,164 KB
testcase_12 AC 47 ms
64,168 KB
testcase_13 AC 116 ms
77,972 KB
testcase_14 AC 148 ms
79,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

    G = [[0, 1, 1],
         [1, 2, 2],
         [1, 2, 2]
         ]

    for _ in range(int(input())):
        H, W = map(int, input().split())
        if H % 3 == 2:
            h0 = 1
        else:
            h0 = 0
        if W % 3 == 2:
            w0 = 1
        else:
            w0 = 0
        ans = [[0] * W for _ in range(H)]
        for h in range(H):
            for w in range(W):
                ans[h][w] = G[(h + h0) % 3][(w + w0) % 3]
        for h in range(H):
            print(*ans[h])


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