結果

問題 No.1851 Regular Tiling
ユーザー KazunKazun
提出日時 2022-02-25 22:01:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 78,668 KB
最終ジャッジ日時 2024-07-03 16:54:21
合計ジャッジ時間 3,615 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,436 KB
testcase_01 AC 125 ms
77,240 KB
testcase_02 AC 133 ms
77,616 KB
testcase_03 AC 124 ms
77,488 KB
testcase_04 AC 121 ms
77,560 KB
testcase_05 AC 124 ms
77,272 KB
testcase_06 AC 133 ms
77,544 KB
testcase_07 AC 127 ms
77,576 KB
testcase_08 AC 126 ms
77,264 KB
testcase_09 AC 132 ms
77,492 KB
testcase_10 AC 120 ms
77,436 KB
testcase_11 AC 56 ms
67,604 KB
testcase_12 AC 49 ms
64,516 KB
testcase_13 AC 146 ms
77,588 KB
testcase_14 AC 175 ms
78,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline

T=int(input())
for _ in range(T):
    H,W=map(int,input().split())

    if H%3==0 or H%3==1:
        alpha=0
    else:
        alpha=2

    if W%3==0 or W%3==1:
        beta=0
    else:
        beta=2

    for i in range(H):
        print(*[(i%3!=alpha)+(j%3!=beta) for j in range(W)])
0