QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#610903 | #7636. Fair Elections | wyhao | WA | 0ms | 3816kb | C++14 | 3.1kb | 2024-10-04 17:59:47 | 2024-10-04 17:59:49 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
int p,q;
int main(){
scanf("%d%d",&p,&q);
if(p==0){
puts("1 1");
puts(".");
return 0;
}
if(p==1){
if(q==1){
puts("-1 -1");
return 0;
}
printf("%d %d\n",1,2*q);
printf("##..");
for(int k=3;k<=q;k++) printf("..");
return 0;
}
if(p==2){
printf("%d %d\n",1,q);
printf("##");
for(int k=3;k<=q;k++) printf(".");
return 0;
}
if(p==3){
if(q<=4){
puts("4 4");
puts("####");
puts("..##");
puts("####");
puts("##..");
return 0;
}
printf("%d %d\n",1,2*q);
printf("##.##.##..");
for(int k=6;k<=q;k++) printf("..");
return 0;
}
if(p==4){
if(q<=5){
puts("5 5");
puts(".####");
puts("##.##");
puts("####.");
puts("#.###");
puts("###.#");
return 0;
}
printf("%d %d\n",1,q);
printf("##.##.");
for(int k=7;k<=q;k++) printf(".");
return 0;
}
if(p==5){
if(q<=7){
puts("28 4");
puts("##..");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("##..");
puts("##..");
return 0;
}
printf("%d %d\n",1,2*q);
printf("##.##.##.##.##..");
for(int k=9;k<=q;k++) printf("..");
return 0;
}
if(p==7 and q==10){
puts("20 4");
puts("##..");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("####");
puts("..##");
puts("####");
puts("##..");
puts("##..");
puts("##..");
return 0;
}
if(p==7 and q==9){
puts("6 18");
puts(".####.##.####.####");
puts("###.####.##.####.#");
puts("#.####.####.##.###");
puts("####.####.####.##.");
puts("##.####.####.####.");
puts("##.##.####.####.##");
return 0;
}
printf("-1 -1");
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3816kb
input:
3 3 2 1 1 2 3 2 1 3
output:
4 4 #### ..## #### ##..
result:
wrong answer 1st numbers differ - expected: '2', found: '4'