QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#447757 | #7637. Exactly Three Neighbors | Iratis | WA | 1ms | 3984kb | C++14 | 690b | 2024-06-18 19:37:37 | 2024-06-18 19:37:37 |
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;
}
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: 1ms
memory: 3912kb
input:
2 3
output:
3 3 ### ### ...
result:
ok good solution
Test #2:
score: 0
Accepted
time: 0ms
memory: 3968kb
input:
1 1
output:
-1 -1
result:
ok no solution
Test #3:
score: -100
Wrong Answer
time: 1ms
memory: 3984kb
input:
3 4
output:
result:
wrong output format Unexpected end of file - int32 expected