結果
問題 | No.1851 Regular Tiling |
ユーザー | titia |
提出日時 | 2022-02-25 21:39:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,254 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 82,448 KB |
実行使用メモリ | 84,664 KB |
最終ジャッジ日時 | 2024-07-03 16:24:34 |
合計ジャッジ時間 | 4,482 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
53,268 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 54 ms
68,216 KB |
testcase_13 | AC | 204 ms
80,884 KB |
testcase_14 | AC | 247 ms
84,664 KB |
ソースコード
import sys input = sys.stdin.readline ANS=[] for i in range(120): if i%3==0: A=[1,1,0]*40 ANS.append(A) else: A=[2,2,1]*40 ANS.append(A) def check(X): for i in range(len(X)): for j in range(len(X[0])): x=X[i][j] count=0 for z,w in [(i+1,j),(i-1,j),(i,j+1),(i,j-1)]: if 0<=z<len(X) and 0<=w<len(X[0]) and X[z][w]==x: count+=1 if count!=x: return False return True T=int(input()) for tests in range(T): H,W=map(int,input().split()) L=[] for i in range(H): L.append(ANS[i][:W]) if check(L)==True: for l in L: print(*l) continue L=[] for i in range(H): L.append(ANS[i+2][:W]) if check(L)==True: for l in L: print(*l) continue L=[] for i in range(H): L.append(ANS[i][2:W+2]) if check(L)==True: for l in L: print(*l) continue L=[] for i in range(H): L.append(ANS[i+2][2:W+2]) if check(L)==True: for l in L: print(*l) continue print(-1)