이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
def solve_test_case(N, M):
total_rows = N + 1
max_AB = (total_rows // 2) * (M // 2) + (total_rows // 2 + total_rows % 2) * ((M + 1) // 2)
print(max_AB)
# Generate the pattern
for i in range(N):
row = ['+' if (i % 2 == 0 and j % 2 == 0) or (i % 2 == 1 and j % 2 == 1) else '-' for j in range(M)]
print("".join(row))
# Read the number of test cases
T = int(input().strip())
for _ in range(T):
# Read the dimensions of the table
N, M = map(int, input().strip().split())
# Solve the test case
solve_test_case(N, M)
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |