이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int main()
{
int t , i , j , m , n , ans , a , b;
cin >> t;
while(t > 0)
{
cin >> n >> m;
if(n > 4 && m > 4)
{
if(n % 2 == 0) a = n - 2;
else a = n - 1;
if(m % 2 == 0) b = m - 2;
else b = m - 1;
ans = a + b;
cout << ans << endl;
for(j = 0 ; j < a / 2 ; j++)
{
for(i = 0 ; i < b / 2 ; i++)
{
cout << "+";
}
for(i = 0 ; i < b / 2 ; i++)
{
cout << "-";
}
for(i = 0 ; i < (m - b) ; i++)
{
cout << "+";
}
cout << endl;
}
for(j = 0 ; j < a / 2 ; j++)
{
for(i = 0 ; i < b / 2 ; i++)
{
cout << "-";
}
for(i = 0 ; i < b / 2 ; i++)
{
cout << "+";
}
for(i = 0 ; i < (m - b) ; i++)
{
cout << "+";
}
cout << endl;
}
for(j = 0 ; j < (n - a) ; j++)
{
for(i = 0 ; i < m ; i++)
{
cout << "-";
}
cout << endl;
}
}
else
{
ans = max(n , m) + (min(n , m) - 1) / 2;
cout << ans << endl;
if(n > m)
{
for(i = 0 ; i < n ; i++)
{
for(j = 0 ; j < m - ((m - 1) / 2) ; j++)
{
cout << '+';
}
for(j = 0 ; j < (m - 1) / 2 ; j++)
{
cout << '-';
}
cout << endl;
}
}
else
{
for(i = 0 ; i < n - ((n - 1) / 2) ; i++)
{
for(j = 0 ; j < m ; j++)
{
cout << '-';
}
cout << endl;
}
for(i = 0 ; i < (n - 1) / 2 ; i++)
{
for(j = 0 ; j < m ; j++)
{
cout << '+';
}
cout << endl;
}
}
}
t--;
}
}
# | 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... |