#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int t;
cin >> t;
while (t--)
{
int n, m;
cin >> n >> m;
vector<string> a(n, string(m, '+'));
for (int i = 0; i < n; ++i)
for (int j = 0; j < m; ++j)
a[i][j] = ((i + j) % 2 ? '+' : '-');
for (int i = 0; i < n; ++i)
for (int j = m - 1 - (m + 1) % 2; j < m; ++j)
a[i][j] = '+';
for (int j = 0; j < m; ++j)
for (int i = n - 1 - (n + 1) % 2; i < n; ++i)
a[i][j] = '-';
int ans = n + m - 2 - (n + 1) % 2 - (m + 1) % 2;
cout << ans << '\n';
for (int i = 0; i < n; ++i)
cout << a[i] << '\n';
// cout << flush;
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 2 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
376 KB |
in the table A+B is not equal to 0 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 2 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
9 ms |
1400 KB |
in the table A+B is not equal to 76 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
1400 KB |
in the table A+B is not equal to 0 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
376 KB |
in the table A+B is not equal to 2 |
2 |
Halted |
0 ms |
0 KB |
- |