#include <bits/stdc++.h>
#define int 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[600][600];
signed 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]='d'; a[n][i]='r';}
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";
}
}
Compilation message
costinland.cpp: In function 'int main()':
costinland.cpp:36:43: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
36 | if(m==5){a[i][i]=a[i+1][i]=a[i+1][i+1]='X'; a[i][i+1]='d'; }
| ~~~~~~~~~~~^~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:36:31: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
36 | if(m==5){a[i][i]=a[i+1][i]=a[i+1][i+1]='X'; a[i][i+1]='d'; }
| ~~~~~~~~~^~~~~~~~~~~~~~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:36:21: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
36 | if(m==5){a[i][i]=a[i+1][i]=a[i+1][i+1]='X'; a[i][i+1]='d'; }
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:36:58: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
36 | if(m==5){a[i][i]=a[i+1][i]=a[i+1][i+1]='X'; a[i][i+1]='d'; }
| ~~~~~~~~~^~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:35:40: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
35 | if(m==4)a[i][i]=a[i+1][i]=a[i][i+1]='X';
| ~~~~~~~~~^~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:35:30: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
35 | if(m==4)a[i][i]=a[i+1][i]=a[i][i+1]='X';
| ~~~~~~~~~^~~~~~~~~~~~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:35:20: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
35 | if(m==4)a[i][i]=a[i+1][i]=a[i][i+1]='X';
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:34:30: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
34 | if(m==3)a[i][i]=a[i+1][i]='X';
| ~~~~~~~~~^~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:34:20: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
34 | if(m==3)a[i][i]=a[i+1][i]='X';
| ~~~~~~~^~~~~~~~~~~~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
costinland.cpp:33:20: warning: writing 1 byte into a region of size 0 [-Wstringop-overflow=]
33 | if(m==2)a[i][i]='X';
| ~~~~~~~^~~~
costinland.cpp:7:6: note: at offset 0 to object 'a' with size 360000 declared here
7 | char a[600][600];
| ^
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Correct! Your size: 3 |
2 |
Correct |
0 ms |
348 KB |
Correct! Your size: 3 |
3 |
Correct |
0 ms |
348 KB |
Correct! Your size: 3 |
4 |
Correct |
0 ms |
348 KB |
Correct! Your size: 5 |
5 |
Correct |
0 ms |
348 KB |
Correct! Your size: 5 |
6 |
Correct |
1 ms |
348 KB |
Correct! Your size: 5 |
7 |
Correct |
0 ms |
348 KB |
Correct! Your size: 5 |
8 |
Correct |
0 ms |
344 KB |
Correct! Your size: 5 |
9 |
Correct |
0 ms |
348 KB |
Correct! Your size: 5 |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
The matrix does not generate the required number of Costins |
2 |
Halted |
0 ms |
0 KB |
- |