이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
using namespace std;
int main(){
int k;
cin>>k;
while(k>0){
int n,m;
cin>>n>>m;
char swapped=false;
if(n<m){
m^=n^=m^=n;
swapped=true;
}
char b[n][m];
for(int i=0;i<n;i++){
for(int y=0;y<m;y++){
b[i][y]='+';
}
}
int ans=n;
int c=0,x=0;
for(int i=0;i<(m-1)/2;i++){
for(int y=0;y<n;y++){
b[y][x]='-';
c++;
if(c==n/2+1){
x++;
c=0;
ans++;
}
}
}
cout<<ans<<endl;
if(!swapped){
for(int y=0;y<n;y++){
for(int x=0;x<m;x++){
cout<<b[y][x];
}
cout<<"\n";
}
}
else{
for(int y=0;y<m;y++){
for(int x=0;x<n;x++){
cout<<(b[x][y]=='+'?'-':'+');
}
cout<<"\n";
}
}
k--;
}
//Matchonov Muhammad
}
# | 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... |