#include <bits/stdc++.h>
using namespace std;
void solution () {
int n, m;
cin >> n >> m;
char arr[n][m];
if (n > m) {
cout << m + m/2 << "\n";
for (int i = 0; i < n; i++) {
for (int j = 0, a = m/2-1; j < m; j++) {
if (a != 0) {
arr[i][j] = '-';
a--;
}else {
arr[i][j] = '+';
}
cout << arr[i][j];
}
cout << "\n";
}
}else {
int a;
if (n % 2 == 0){
cout << m+n/2-1 << "\n";
a = n/2-1;
} else {
cout << m+n/2 << "\n";
a = n/2;
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
if (a != 0) {
arr[i][j] = '+';
}else {
arr[i][j] = '-';
}
cout << arr[i][j];
}
if (a != 0) {
a--;
}
cout << "\n";
}
}
}
int main () {
ios::sync_with_stdio(false);
cin.tie(NULL);
int t;
cin >> t;
while (t--) solution();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 1: 1 < 2 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
364 KB |
Wrong answer in test 2 1: 1 < 2 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 1: 1 < 2 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
38 ms |
1512 KB |
in the table A+B is not equal to 31 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
37 ms |
1388 KB |
Wrong answer in test 24 24: 35 < 44 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
364 KB |
Output is correct |
2 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 2 1: 1 < 2 |