QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#49272 | #2540. Build The Grid | Bovmelo | WA | 0ms | 3520kb | C++20 | 739b | 2022-09-19 21:24:54 | 2022-09-19 21:24:56 |
Judging History
answer
// Nothing is Given, Everything is Earned.
#include<bits/stdc++.h>
using namespace std;
template<class T> constexpr auto vec(int sz=0,auto ...dim)
{
if constexpr(sizeof...(dim)==0) return move(vector<T>(sz));
else return move(vector(sz,vec<T>(dim...)));
}
template<auto val> constexpr auto vec(int sz=0,auto ...dim)
{
if constexpr(sizeof...(dim)==0) return move(vector(sz,val));
else return move(vector(sz,vec<val>(dim...)));
}
int main()
{
int n; cin>>n;
auto a=vec<int>(n,n);
for(int i=0,k=n-1;i<n;i+=2)
{
for(int j=0;j<k;j++)
a[i][j]=a[i+j][k]=1;
k-=2;
}
for(auto i:a)
{
for(auto j:i) cout<<(j?'B':'W');
cout<<"\n";
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3520kb
input:
3
output:
BBB WWB WWW
result:
wrong answer there are no white cells around a black cell