QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#447834 | #7637. Exactly Three Neighbors | Iratis | WA | 1ms | 3988kb | C++14 | 1.3kb | 2024-06-18 21:02:00 | 2024-06-18 21:02:00 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define md(a) a=(a%mod+mod)%mod
#define file(a) freopen(#a".in","r",stdin);freopen(#a".out","w",stdout)
bool ST;
int p,q;
inline bool leq(int x,int y){return p*y<=q*x;}
bool ED;
signed main()
{
int time_st=clock();
cerr<<(&ST-&ED)/1024.0/1024<<endl;ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>p>>q;if(!leq(4,5)){cout<<"-1 -1";return 0;}
if(leq(2,3))
{
if(p&1)p*=2,q*=2;int n=q,m=3;cout<<n<<' '<<m<<'\n';
for(int i=1;i<=p/2*3;i++)
{
if(i%3==0)cout<<"...\n";
else cout<<"###\n";
}
for(int i=p/2*3+1;i<=n;i++)cout<<"...\n";
return 0;
}
if(p==3&&q==4)
{
cout<<"4 4\n";
cout<<"####\n";
cout<<"..##\n";
cout<<"####\n";
cout<<"##..\n";
return 0;
}
if(p==4&&q==5)
{
cout<<"5 5\n";
cout<<"#.###\n";
cout<<"###.#\n";
cout<<".####\n";
cout<<"##.##\n";
cout<<"####.\n";
return 0;
}
if(p==7&&q==10)
{
cout<<"4 5\n";
cout<<".###.\n";
cout<<"##.##\n";
cout<<"##.##\n";
cout<<".###.\n";
return 0;
}
if(p==5&&q==7)
{
cout<<"6 7\n";
cout<<"..##.##\n";
cout<<"####.##\n";
cout<<"##.###.\n";
cout<<"##.###.\n";
cout<<"####.##\n";
cout<<"..##.##\n";
return 0;
}
cerr<<(clock()-time_st)/1e6<<endl;return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3960kb
input:
2 3
output:
3 3 ### ### ...
result:
ok good solution
Test #2:
score: 0
Accepted
time: 1ms
memory: 3900kb
input:
1 1
output:
-1 -1
result:
ok no solution
Test #3:
score: 0
Accepted
time: 0ms
memory: 3948kb
input:
3 4
output:
4 4 #### ..## #### ##..
result:
ok good solution
Test #4:
score: 0
Accepted
time: 0ms
memory: 3964kb
input:
3 5
output:
10 3 ### ### ... ### ### ... ### ### ... ...
result:
ok good solution
Test #5:
score: 0
Accepted
time: 0ms
memory: 3768kb
input:
4 5
output:
5 5 #.### ###.# .#### ##.## ####.
result:
ok good solution
Test #6:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
7 10
output:
4 5 .###. ##.## ##.## .###.
result:
ok good solution
Test #7:
score: 0
Accepted
time: 0ms
memory: 3988kb
input:
5 7
output:
6 7 ..##.## ####.## ##.###. ##.###. ####.## ..##.##
result:
ok good solution
Test #8:
score: -100
Wrong Answer
time: 0ms
memory: 3924kb
input:
7 9
output:
result:
wrong output format Unexpected end of file - int32 expected