QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#443637#7637. Exactly Three Neighborsjinqihao2023WA 1ms3880kbC++14826b2024-06-15 16:09:432024-06-15 16:09:45

Judging History

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

  • [2024-06-15 16:09:45]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3880kb
  • [2024-06-15 16:09:43]
  • 提交

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;
	}
	if(p==3 && q==4)
	{
		printf("4 4\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: 1ms
memory: 3880kb

input:

2 3

output:

1 6
##.##.

result:

ok good solution

Test #2:

score: 0
Accepted
time: 1ms
memory: 3716kb

input:

1 1

output:

-1 -1

result:

ok no solution

Test #3:

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

input:

3 4

output:

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

result:

ok good solution

Test #4:

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

input:

3 5

output:

1 10
##.##.##..

result:

ok good solution

Test #5:

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

input:

4 5

output:

-1 -1

result:

wrong answer you didn't find a solution but jury did