結果

問題 No.1851 Regular Tiling
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-28 15:07:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-07-06 17:36:38
合計ジャッジ時間 3,863 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 101 ms
76,416 KB
testcase_02 AC 97 ms
76,912 KB
testcase_03 AC 99 ms
77,184 KB
testcase_04 AC 96 ms
77,056 KB
testcase_05 AC 97 ms
76,988 KB
testcase_06 AC 99 ms
77,056 KB
testcase_07 AC 95 ms
77,056 KB
testcase_08 AC 96 ms
76,672 KB
testcase_09 AC 100 ms
76,824 KB
testcase_10 AC 94 ms
76,580 KB
testcase_11 AC 58 ms
63,360 KB
testcase_12 AC 51 ms
62,108 KB
testcase_13 AC 110 ms
77,184 KB
testcase_14 AC 153 ms
78,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = []
for i in range(35):
    A.append([0, 1, 1]*100)
    A.append([1, 2, 2]*100)
    A.append([1, 2, 2]*100)

t = int(input())
for _ in range(t):
    h, w = map(int, input().split())
    if h%3 == 2:
        hoff = 1
    else:
        hoff = 0
    if w%3 == 2:
        woff = 1
    else:
        woff = 0
    for i in range(hoff, h+hoff):
        print(*A[i][woff:w+woff])
0