QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#610903#7636. Fair ElectionswyhaoWA 0ms3816kbC++143.1kb2024-10-04 17:59:472024-10-04 17:59:49

Judging History

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

  • [2024-10-04 17:59:49]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3816kb
  • [2024-10-04 17:59:47]
  • 提交

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'