#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main() {
int tt;
cin >> tt;
while (tt--) {
int n, m;
cin >> n >> m;
cout << (n + m - 2 - (1 - n % 2) - (1 - m % 2)) << '\n';
int l;
if (m % 2 == 0) l = (m + 2) / 2;
else l = (m + 1) / 2;
int it = 0;
vector<vector<int>> ans(n, vector<int>(m));
vector<int> cnt(m);
for (int i = 0; i < n; ++i) {
for (int j = 0; j < l; ++j) {
ans[i][it] = 1;
cnt[it]++;
it = (it + 1) % m;
}
int max1 = 0;
for (int j = 0; j < m; ++j) {
max1 = max(max1, cnt[j]);
}
if (n % 2 == 0) {
if (max1 >= (n - 1) / 2) break;
}
else if (max1 >= n / 2) break;
}
for (auto e : ans) {
for (auto u : e) {
if (u) cout << "+";
else cout << "-";
}
cout << '\n';
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 1 3: 2 < 3 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
364 KB |
in the table A+B is not equal to 0 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 1 3: 2 < 3 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
49 ms |
1388 KB |
in the table A+B is not equal to 116 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
47 ms |
1516 KB |
in the table A+B is not equal to 44 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
364 KB |
Wrong answer in test 1 3: 2 < 3 |
2 |
Halted |
0 ms |
0 KB |
- |