結果
問題 | No.2958 Placing Many L-s |
ユーザー | hiro1729 |
提出日時 | 2024-11-08 21:47:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,138 bytes |
コンパイル時間 | 288 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 78,356 KB |
最終ジャッジ日時 | 2024-11-08 21:47:52 |
合計ジャッジ時間 | 6,239 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,224 KB |
testcase_01 | AC | 40 ms
52,352 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | AC | 98 ms
78,080 KB |
testcase_04 | AC | 93 ms
78,356 KB |
testcase_05 | WA | - |
testcase_06 | AC | 40 ms
51,968 KB |
testcase_07 | WA | - |
testcase_08 | AC | 44 ms
53,248 KB |
testcase_09 | AC | 85 ms
76,544 KB |
testcase_10 | WA | - |
testcase_11 | AC | 109 ms
76,800 KB |
testcase_12 | WA | - |
testcase_13 | AC | 95 ms
76,580 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 95 ms
76,396 KB |
testcase_18 | AC | 40 ms
52,480 KB |
testcase_19 | WA | - |
testcase_20 | AC | 99 ms
77,696 KB |
testcase_21 | AC | 43 ms
52,096 KB |
testcase_22 | AC | 93 ms
78,208 KB |
testcase_23 | AC | 39 ms
52,352 KB |
testcase_24 | AC | 156 ms
76,928 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
ソースコード
for _ in range(int(input())): N, M = map(int, input().split()) if N * M % 4 != 0: print(-1) elif N % 4 == 0: if M % 2 == 0: K = N * M // 4 print(K) ans = [[0] * M for _ in range(N)] c = 1 for i in range(N // 4): for j in range(M // 2): ans[4 * i][2 * j] = c ans[4 * i][2 * j + 1] = c ans[4 * i + 1][2 * j] = c ans[4 * i + 1][2 * j + 1] = c + 1 ans[4 * i + 2][2 * j] = c ans[4 * i + 2][2 * j + 1] = c + 1 ans[4 * i + 3][2 * j] = c + 1 ans[4 * i + 3][2 * j + 1] = c + 1 c += 2 for i in range(N): print(*ans[i]) else: print(-1) elif N % 2 == 0: if M % 4 == 0: K = N * M // 4 print(K) ans = [[0] * M for _ in range(N)] c = 1 for i in range(N // 2): for j in range(M // 4): ans[2 * i][4 * j] = c ans[2 * i + 1][4 * j] = c ans[2 * i][4 * j + 1] = c ans[2 * i + 1][4 * j + 1] = c + 1 ans[2 * i][4 * j + 2] = c ans[2 * i + 1][4 * j + 2] = c + 1 ans[2 * i][4 * j + 3] = c + 1 ans[2 * i + 1][4 * j + 3] = c + 1 c += 2 for i in range(N): print(*ans[i]) else: print(-1) else: print(-1)