# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1093908 | Muhammet | Red-blue table (IZhO19_stones) | C++17 | 18 ms | 1372 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
vector <vector <char>> a;
int main(){
ios::sync_with_stdio(false); cin.tie(nullptr);
int T;
cin >> T;
while(T--){
int n, m;
cin >> n >> m;
a.assign(n, vector <char> (m,'+'));
if(m >= n){
int n1 = (n/2)+1;
for(int j = 0; j < m; j++){
for(int i = 0; i < n1; i++){
a[i][j] = '-';
}
}
}
int ans = 0;
for(int i = 0; i < n; i++){
int a1 = 0, b1 = 0;
for(int j = 0; j < m; j++){
if(a[i][j] == '+') a1++;
else b1++;
}
ans += (a1 > b1);
}
int ans1 = ans;
for(int j = 0; j < m; j++){
int a1 = 0, b1 = 0;
for(int i = 0; i < n; i++){
if(a[i][j] == '+') a1++;
else b1++;
}
ans += (b1 > a1);
}
cout << ans << '\n';
for(int i = 0; i < n; i++){
for(int j = 0; j < m; j++){
cout << a[i][j];
}
cout << '\n';
}
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |