# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
673324 | 2022-12-20T08:10:52 Z | Baytoro | Red-blue table (IZhO19_stones) | C++17 | 23 ms | 1412 KB |
#include <bits/stdc++.h> using namespace std; #define ios ios::sync_with_stdio(false); cin.tie(NULL); #define pb push_back #define all(x) x.begin(), x.end() #define rall(x) x.rbegin(), x.rend() #define fr first #define sc second #define int long long #define endl '\n' #define cnt(x) __builtin_popcount(x) void fopn(string name){ freopen((name+".in").c_str(),"r",stdin); freopen((name+".out").c_str(),"w",stdout); } const int INF=1e18,mod=998244353; int n,m; char ar[1005][1005]; void solve(){ cin>>n>>m; int swaped=0; if(n>m){ swap(n,m); swaped=1; } for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ if(swaped) ar[i][j]='+'; else ar[i][j]='-'; } } cout<<m+min(n,(n/2-!(n%2)*m/(m/2+1)))<<endl; for(int i=1,k=1;i<=min(n,n/2-!(n%2)*m/(m/2+1));i++){ for(int j=1;j<=m/2+1;j++,k++){ if(k==m+1) k=1; if(swaped) ar[i][k]='-'; else ar[i][k]='+'; } } if(!swaped) for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++) cout<<ar[i][j]; cout<<endl; } else for(int i=1;i<=m;i++){ for(int j=1;j<=n;j++) cout<<ar[j][i]; cout<<endl; } } main(){ //fopn("newbarn"); ios; int T=1; cin>>T; while(T--){ solve(); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 340 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 340 KB | Output is correct |
4 | Incorrect | 1 ms | 340 KB | Wrong answer in test 5 29: 31 < 32 |
5 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 21 ms | 1376 KB | Wrong answer in test 97 21: 107 < 116 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 23 ms | 1412 KB | Wrong answer in test 24 24: 35 < 44 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 212 KB | Output is correct |
2 | Correct | 0 ms | 212 KB | Output is correct |
3 | Correct | 1 ms | 340 KB | Output is correct |
4 | Incorrect | 1 ms | 340 KB | Wrong answer in test 5 29: 31 < 32 |
5 | Halted | 0 ms | 0 KB | - |