結果
問題 | No.2958 Placing Many L-s |
ユーザー | 👑 rin204 |
提出日時 | 2024-11-08 22:46:56 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,120 bytes |
コンパイル時間 | 477 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 82,432 KB |
最終ジャッジ日時 | 2024-11-08 22:47:13 |
合計ジャッジ時間 | 7,305 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,736 KB |
testcase_01 | AC | 42 ms
52,352 KB |
testcase_02 | AC | 42 ms
52,608 KB |
testcase_03 | AC | 111 ms
80,512 KB |
testcase_04 | AC | 94 ms
78,336 KB |
testcase_05 | WA | - |
testcase_06 | AC | 37 ms
52,096 KB |
testcase_07 | WA | - |
testcase_08 | AC | 42 ms
53,248 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 37 ms
52,224 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 36 ms
51,968 KB |
testcase_22 | WA | - |
testcase_23 | AC | 37 ms
52,096 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 80 ms
76,288 KB |
testcase_30 | AC | 47 ms
59,776 KB |
ソースコード
def solve(): n, m = map(int, input().split()) if n * m % 8 != 0 or n == 1 or m == 1: print(-1) return rev = False if n % 4 == 0: n, m = m, n rev = True A = [[0] * m for _ in range(n)] c = 0 if n % 2 == 1: S = [ [1, 2, 2, 2, 5, 5, 5, 6], [1, 2, 3, 4, 4, 4, 5, 6], [1, 1, 3, 3, 3, 4, 6, 6], ] for j in range(0, m, 8): for i in range(3): for k in range(8): A[i][j + k] = S[i][k] + c c += 6 s = 3 else: s = 0 S = [ [1, 1, 1, 2], [1, 2, 2, 2], ] for i in range(s, n, 2): for j in range(0, m, 4): for ii in range(2): for k in range(4): A[i + ii][j + k] = S[ii][k] + c c += 2 print(n * m // 4) if rev: B = [[0] * n for _ in range(m)] for i in range(n): for j in range(m): B[j][i] = A[i][j] for row in A: print(*row) for _ in range(int(input())): solve()