QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#443635#7637. Exactly Three Neighborsjinqihao2023WA 0ms3832kbC++14682b2024-06-15 16:08:592024-06-15 16:08:59

Judging History

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

  • [2024-06-15 16:08:59]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3832kb
  • [2024-06-15 16:08:59]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int p,q;
int main()
{
	scanf("%d %d",&p,&q);
	if(4*p>3*q){printf("-1 -1\n");return 0;}
	if(3*p<=2*q)
	{
		printf("1 %d\n",2*q);
		for(int i=1;i<=p;i++)printf("##.");
		for(int i=3*p+1;i<=2*q;i++)printf(".");
		printf("\n");
		return 0;
	}
	if(p==5 && q==7)
	{
		printf("7 6\n");
		printf("##..##\n");
		printf(".####.\n");
		printf("######\n");
		printf("#....#\n");
		printf("######\n");
		printf(".####.\n");
		printf("##..##\n");
		return 0;
	}
	if(p==7 && q==10)
	{
		printf("4 5\n");
		printf(".###.\n");
		printf("##.##\n");
		printf("##.##\n");
		printf(".###.\n");
		return 0;
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3768kb

input:

2 3

output:

1 6
##.##.

result:

ok good solution

Test #2:

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

input:

1 1

output:

-1 -1

result:

ok no solution

Test #3:

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

input:

3 4

output:


result:

wrong output format Unexpected end of file - int32 expected