結果

問題 No.1851 Regular Tiling
ユーザー ああいいああいい
提出日時 2022-02-25 22:42:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 77,328 KB
最終ジャッジ日時 2024-07-03 17:38:25
合計ジャッジ時間 3,133 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,700 KB
testcase_01 AC 87 ms
76,584 KB
testcase_02 AC 81 ms
76,392 KB
testcase_03 AC 89 ms
76,468 KB
testcase_04 AC 89 ms
76,272 KB
testcase_05 AC 87 ms
76,428 KB
testcase_06 AC 97 ms
76,920 KB
testcase_07 AC 87 ms
76,628 KB
testcase_08 AC 88 ms
76,564 KB
testcase_09 AC 99 ms
76,380 KB
testcase_10 AC 79 ms
76,160 KB
testcase_11 AC 67 ms
69,976 KB
testcase_12 AC 50 ms
63,504 KB
testcase_13 AC 116 ms
76,800 KB
testcase_14 AC 143 ms
77,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())

l1 = [[0,1,1],
      [1,2,2],
      [1,2,2]]
l2 = [[1,1,0],
      [2,2,1],
      [2,2,1,]]
l3 = [[2,2,1],
      [2,2,1],
      [1,1,0]]
l4 = [[1,2,2,],
      [1,2,2,],
      [0,1,1,]]
d = [[l1,l4,l2],
     [l1,l1,l2],
     [l3,l4,l3]]
for _ in range(T):
    H,W = map(int,input().split())
    h = H % 3
    w = W % 3
    l = d[h][w]
    for h in range(H):
        for w in range(W):
            print(l[h%3][w%3],end = " ")
        print()
0