#include <bits/stdc++.h>
using namespace std;
void solve () {
int n, m; cin >> n >> m;
if (n > m) {
cout << n + (m + 1) / 2 << '\n';
assert(n + (m + 1) / 2 == 108);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cout << (j & 1 ? "+" : "-");
}
cout << '\n';
}
} else {
cout << m + (n + 1) / 2 << '\n';
assert(m + (n + 1) / 2 == 108);
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
cout << (i & 1 ? "-" : "+");
}
cout << '\n';
}
}
}
signed main () {
ios::sync_with_stdio(0); cin.tie(0);
int tc = 1; cin >> tc;
while (tc--) solve();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
0 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
600 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
604 KB |
Execution killed with signal 6 |
2 |
Halted |
0 ms |
0 KB |
- |