結果

問題 No.1851 Regular Tiling
ユーザー ytftytft
提出日時 2022-03-14 12:00:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 240 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 79,200 KB
最終ジャッジ日時 2024-09-19 22:00:07
合計ジャッジ時間 4,599 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 171 ms
77,824 KB
testcase_02 AC 175 ms
78,064 KB
testcase_03 AC 177 ms
78,356 KB
testcase_04 AC 174 ms
78,676 KB
testcase_05 AC 174 ms
78,812 KB
testcase_06 AC 175 ms
78,464 KB
testcase_07 AC 182 ms
78,464 KB
testcase_08 AC 185 ms
78,828 KB
testcase_09 AC 176 ms
78,572 KB
testcase_10 AC 180 ms
78,720 KB
testcase_11 AC 62 ms
68,096 KB
testcase_12 AC 57 ms
65,664 KB
testcase_13 AC 178 ms
78,464 KB
testcase_14 AC 197 ms
79,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,math
input=lambda:sys.stdin.readline().rstrip()
def solve():
	H,W=map(int,input().split())
	for i in range(H):
		print(*[int((j+(W%3==2))%3!=0)+int((i+(H%3==2))%3!=0) for j in range(W)])
T=int(input())
for i in range(T):
	solve()
0