結果

問題 No.1851 Regular Tiling
ユーザー H20H20
提出日時 2022-02-25 22:55:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-07-03 17:53:23
合計ジャッジ時間 3,018 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,480 KB
testcase_01 AC 86 ms
77,056 KB
testcase_02 AC 90 ms
77,184 KB
testcase_03 AC 89 ms
76,992 KB
testcase_04 AC 84 ms
77,312 KB
testcase_05 AC 85 ms
76,800 KB
testcase_06 AC 87 ms
77,056 KB
testcase_07 AC 85 ms
77,220 KB
testcase_08 AC 89 ms
76,928 KB
testcase_09 AC 90 ms
76,984 KB
testcase_10 AC 87 ms
76,800 KB
testcase_11 AC 50 ms
63,616 KB
testcase_12 AC 48 ms
62,208 KB
testcase_13 AC 103 ms
77,292 KB
testcase_14 AC 136 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

BIGMAP = []
for _ in range(50):
    BIGMAP.append([0,1,1]*100)
    BIGMAP.append([1,2,2]*100)
    BIGMAP.append([1,2,2]*100)

T = int(input())
for _ in range(T):
    H,W = map(int, input().split())
    hoff = 0
    woff = 0
    if H%3==2:
        hoff+=1
    if W%3==2:
        woff+=1
    MAP = []
    for i in range(hoff,H+hoff):
        MAP.append(BIGMAP[i][woff:W+woff])
    for m in MAP:
        print(*m)


0