結果

問題 No.1851 Regular Tiling
ユーザー hir355hir355
提出日時 2022-02-26 00:37:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 173 ms / 2,000 ms
コード長 587 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 79,352 KB
最終ジャッジ日時 2024-07-03 19:47:02
合計ジャッジ時間 3,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,416 KB
testcase_01 AC 129 ms
77,004 KB
testcase_02 AC 135 ms
77,520 KB
testcase_03 AC 131 ms
77,376 KB
testcase_04 AC 130 ms
77,364 KB
testcase_05 AC 127 ms
77,748 KB
testcase_06 AC 139 ms
77,216 KB
testcase_07 AC 130 ms
77,456 KB
testcase_08 AC 131 ms
77,204 KB
testcase_09 AC 133 ms
77,536 KB
testcase_10 AC 121 ms
77,428 KB
testcase_11 AC 61 ms
69,992 KB
testcase_12 AC 56 ms
65,808 KB
testcase_13 AC 137 ms
77,964 KB
testcase_14 AC 173 ms
79,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for _ in range(t):
    h, w = map(int, input().split())
    ans = [[0] * w for _ in range(h)]
    for i in range(h):
        for j in range(w):
            if h % 3 == 1:
                ht = (i % 3 == 0)
            else:
                ht = (i % 3 == 2)
            if w % 3 == 1:
                wt = (j % 3 == 0)
            else:
                wt = (j % 3 == 2)
            if ht and wt:
                ans[i][j] = 0
            elif ht or wt:
                ans[i][j] = 1
            else:
                ans[i][j] = 2
    for row in ans:
        print(*row)
0