This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#define ll long long
#define pii pair<int,int>
#define pll pair<ll,ll>
using namespace std;
int n,m,k,i,j,ans,x,y;
char a[60][60];
int main() {
cin>>m;
i=1;
while(i*6<=m){
i*=6;
n++;
}
n*=2;
n+=3;
int p=m%6;
for(i = 1; i <= n; i++) for(j = 1; j <= n; j++)a[i][j]='.';
for(i=1; i<=n; i++){a[i][n]='r'; a[n][i]='d';}
if(n)
for(i=1;i<n-3;i+=2){
a[i][i]=a[i+1][i]=a[i+1][i+1]=a[i][i+1]='X';
a[i+2][i]=a[i+2][i+1]='r';
a[i][i+2]=a[i+1][i+2]='d';
if(p==1)a[i+2][i]='X';
if(p==2)a[i+2][i]=a[i][i+2]='X';
if(p==3)a[i+2][i+1]='X';
if(p==4)a[i+2][i+1]=a[i+2][i]='X';
if(p==5)a[i+2][i+1]=a[i+2][i]=a[i][i+2]='X';
p=0; m/=6;
}
i=n-2;
if(m==2)a[i][i]='X';
if(m==3)a[i][i]=a[i+1][i]='X';
if(m==4)a[i][i]=a[i+1][i]=a[i][i+1]='X';
if(m==5){a[i][i]=a[i+1][i]=a[i+1][i+1]='X'; a[i][i+1]='d'; }
cout<< n <<" "<< n <<"\n";
for(i = 1; i <= n; i++){
for(j = 1; j <= n; j++){
cout<< a[i][j];
}
cout<<"\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |