QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#444937 | #7637. Exactly Three Neighbors | jinqihao2023 | AC ✓ | 1ms | 3948kb | C++14 | 1.5kb | 2024-06-15 22:32:07 | 2024-06-15 22:32:08 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int p,q;
int main()
{
scanf("%d %d",&p,&q);
if(4*p>3*q && (p!=4 || q!=5) && (p!=7 || q!=9)){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;
}
if(p==4 && q==5)
{
printf("5 5\n");
printf("#.###\n");
printf("###.#\n");
printf(".####\n");
printf("##.##\n");
printf("####.\n");
return 0;
}
if(p==7 && q==9)
{
printf("18 6\n");
printf("..####\n");
printf("###.##\n");
printf("#####.\n");
printf("#..###\n");
printf("####.#\n");
printf(".#####\n");
printf("##..##\n");
printf("#####.\n");
printf("#.####\n");
printf("###..#\n");
printf(".#####\n");
printf("##.###\n");
printf("####..\n");
printf("#.####\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: 3916kb
input:
2 3
output:
1 6 ##.##.
result:
ok good solution
Test #2:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
1 1
output:
-1 -1
result:
ok no solution
Test #3:
score: 0
Accepted
time: 0ms
memory: 3856kb
input:
3 4
output:
4 4 ..## #### ##.. ####
result:
ok good solution
Test #4:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
3 5
output:
1 10 ##.##.##..
result:
ok good solution
Test #5:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
4 5
output:
5 5 #.### ###.# .#### ##.## ####.
result:
ok good solution
Test #6:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
7 10
output:
4 5 .###. ##.## ##.## .###.
result:
ok good solution
Test #7:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
5 7
output:
7 6 ##..## .####. ###### #....# ###### .####. ##..##
result:
ok good solution
Test #8:
score: 0
Accepted
time: 0ms
memory: 3884kb
input:
7 9
output:
18 6 ..#### ###.## #####. #..### ####.# .##### ##..## #####. #.#### ###..# .##### ##.### ####.. #.#### ###.## .####. ##.### ####.#
result:
ok good solution
Test #9:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
0 1
output:
1 2 ..
result:
ok good solution
Test #10:
score: 0
Accepted
time: 0ms
memory: 3816kb
input:
1 2
output:
1 4 ##..
result:
ok good solution
Test #11:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
1 3
output:
1 6 ##....
result:
ok good solution
Test #12:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
1 4
output:
1 8 ##......
result:
ok good solution
Test #13:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
1 5
output:
1 10 ##........
result:
ok good solution
Test #14:
score: 0
Accepted
time: 0ms
memory: 3752kb
input:
1 6
output:
1 12 ##..........
result:
ok good solution
Test #15:
score: 0
Accepted
time: 0ms
memory: 3900kb
input:
1 7
output:
1 14 ##............
result:
ok good solution
Test #16:
score: 0
Accepted
time: 0ms
memory: 3820kb
input:
1 8
output:
1 16 ##..............
result:
ok good solution
Test #17:
score: 0
Accepted
time: 0ms
memory: 3824kb
input:
1 9
output:
1 18 ##................
result:
ok good solution
Test #18:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
1 10
output:
1 20 ##..................
result:
ok good solution
Test #19:
score: 0
Accepted
time: 1ms
memory: 3904kb
input:
2 5
output:
1 10 ##.##.....
result:
ok good solution
Test #20:
score: 0
Accepted
time: 0ms
memory: 3908kb
input:
2 7
output:
1 14 ##.##.........
result:
ok good solution
Test #21:
score: 0
Accepted
time: 0ms
memory: 3904kb
input:
2 9
output:
1 18 ##.##.............
result:
ok good solution
Test #22:
score: 0
Accepted
time: 0ms
memory: 3912kb
input:
3 7
output:
1 14 ##.##.##......
result:
ok good solution
Test #23:
score: 0
Accepted
time: 0ms
memory: 3892kb
input:
3 8
output:
1 16 ##.##.##........
result:
ok good solution
Test #24:
score: 0
Accepted
time: 0ms
memory: 3916kb
input:
3 10
output:
1 20 ##.##.##............
result:
ok good solution
Test #25:
score: 0
Accepted
time: 0ms
memory: 3852kb
input:
4 7
output:
1 14 ##.##.##.##...
result:
ok good solution
Test #26:
score: 0
Accepted
time: 1ms
memory: 3912kb
input:
4 9
output:
1 18 ##.##.##.##.......
result:
ok good solution
Test #27:
score: 0
Accepted
time: 0ms
memory: 3784kb
input:
5 6
output:
-1 -1
result:
ok no solution
Test #28:
score: 0
Accepted
time: 0ms
memory: 3948kb
input:
5 8
output:
1 16 ##.##.##.##.##..
result:
ok good solution
Test #29:
score: 0
Accepted
time: 0ms
memory: 3860kb
input:
5 9
output:
1 18 ##.##.##.##.##....
result:
ok good solution
Test #30:
score: 0
Accepted
time: 0ms
memory: 3848kb
input:
6 7
output:
-1 -1
result:
ok no solution
Test #31:
score: 0
Accepted
time: 0ms
memory: 3896kb
input:
7 8
output:
-1 -1
result:
ok no solution
Test #32:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
8 9
output:
-1 -1
result:
ok no solution
Test #33:
score: 0
Accepted
time: 0ms
memory: 3828kb
input:
9 10
output:
-1 -1
result:
ok no solution
Extra Test:
score: 0
Extra Test Passed