結果

問題 No.1851 Regular Tiling
ユーザー kohei2019kohei2019
提出日時 2023-07-08 00:52:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 339 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 78,976 KB
最終ジャッジ日時 2024-07-21 21:12:18
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,604 KB
testcase_01 AC 102 ms
76,696 KB
testcase_02 AC 104 ms
76,808 KB
testcase_03 AC 101 ms
76,380 KB
testcase_04 AC 98 ms
76,644 KB
testcase_05 AC 99 ms
76,544 KB
testcase_06 AC 103 ms
76,544 KB
testcase_07 AC 99 ms
76,544 KB
testcase_08 AC 104 ms
76,848 KB
testcase_09 AC 108 ms
76,672 KB
testcase_10 AC 99 ms
76,628 KB
testcase_11 AC 59 ms
65,920 KB
testcase_12 AC 54 ms
62,720 KB
testcase_13 AC 128 ms
77,184 KB
testcase_14 AC 171 ms
78,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
SQ = [[0,1,1],[1,2,2],[1,2,2],[0,1,1]]
mm = [0,0,1]
for i in range(T):
    H,W = map(int,input().split())
    ans = [[0]*W for j in range(H)]
    x = mm[H%3]
    y = mm[W%3]
    for j in range(H):
        for k in range(W):
            ans[j][k] = SQ[(x+j)%3][(y+k)%3]
    for j in range(H):
        print(*ans[j],sep=' ')
0