QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#447760#7637. Exactly Three NeighborsIratisWA 0ms4000kbC++14830b2024-06-18 19:39:542024-06-18 19:39:56

Judging History

你现在查看的是最新测评结果

  • [2024-06-18 19:39:56]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:4000kb
  • [2024-06-18 19:39:54]
  • 提交

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;
	}
	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: 4000kb

input:

2 3

output:

3 3
###
###
...

result:

ok good solution

Test #2:

score: 0
Accepted
time: 0ms
memory: 3972kb

input:

1 1

output:

-1 -1

result:

ok no solution

Test #3:

score: 0
Accepted
time: 0ms
memory: 3972kb

input:

3 4

output:

4 4
####
..##
####
##..

result:

ok good solution

Test #4:

score: 0
Accepted
time: 0ms
memory: 3912kb

input:

3 5

output:

10 3
###
###
...
###
###
...
###
###
...
...

result:

ok good solution

Test #5:

score: -100
Wrong Answer
time: 0ms
memory: 3924kb

input:

4 5

output:


result:

wrong output format Unexpected end of file - int32 expected