답안 #498595

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
498595 2021-12-25T15:31:30 Z yahyobekabdunazarov Red-blue table (IZhO19_stones) C++17
0 / 100
28 ms 1316 KB
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;
void solve(){
    int n, m;
    cin >> n >> m;
    cout << ceil((double)n/2)+ceil((double)m/2) << "\n";
    for(int i=0; i<n; i++){
        for(int j=0; j<m; j++){
            if(i>n/2||((j==m-1||j==0)&&i!=n-1)){
                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 Correct 1 ms 204 KB Output is correct
2 Incorrect 1 ms 204 KB in the table A+B is not equal to 2
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 332 KB in the table A+B is not equal to 25
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Incorrect 1 ms 204 KB in the table A+B is not equal to 2
# 결과 실행 시간 메모리 Grader output
1 Incorrect 28 ms 1316 KB in the table A+B is not equal to 60
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 26 ms 1204 KB in the table A+B is not equal to 24
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Incorrect 1 ms 204 KB in the table A+B is not equal to 2