답안 #498886

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
498886 2021-12-26T14:06:36 Z yahyobekabdunazarov Red-blue table (IZhO19_stones) C++17
0 / 100
24 ms 1252 KB
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
void solve(){
    int n, m;
    cin >> n >> m;
    cout << max(n, m) << endl;
    if(n<m){
        for(int i=0; i<n; i++){
            for(int j=0; j<m; j++){
                cout << "-";
            }
            cout << "\n";
        }
    }
    else if(n>m){ 
        for(int i=0; i<n; i++){
            for(int j=0; j<m; j++){
                cout << "+";
            }
            cout << "\n";
        }
    }
    else{
       for(int i=0; i<n; i++){
            for(int j=0; j<m; j++){
                if(j<ceil(m/2)){
                    cout << "-";
                }
                else{
                    cout << "+";
                }
            }
            cout << "\n";
        } 
    }
}
int main()
{
    ios::sync_with_stdio(0);
    cin.tie(0);
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Wrong answer in test 3 45: 45 < 46
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 24 ms 1252 KB Wrong answer in test 97 21: 97 < 116
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 22 ms 1228 KB in the table A+B is not equal to 24
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB in the table A+B is not equal to 3
2 Halted 0 ms 0 KB -