結果
問題 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 14 |
ソースコード
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()