QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#593640#7637. Exactly Three Neighborsrotcar07WA 0ms3612kbC++20557b2024-09-27 15:17:312024-09-27 15:17:33

Judging History

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

  • [2024-09-27 15:17:33]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3612kb
  • [2024-09-27 15:17:31]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
int main(){
    int p,q;cin>>p>>q;
    if(p*9>=q*7) puts("-1");
    else if(!p) puts("1 1\n.");
    else if(p*3<=q*2){
        if(p&1) p*=2,q*=2;
        cout<<"1 "<<q<<'\n';
        for(int i=0;i<p/2*3;i++) putchar(".#"[!!(i%3)]);
        for(int i=p/2*3;i<q;i++) putchar('.');
        cout<<'\n';
    }
    else if(p==3) puts("4 4\n.##.\n####\n#..#\n####");
    else if(p==5) puts("6 7\n..##.##\n..##.##\n####.##\n##.###.\n##.###.\n####.##");
    else puts("4 5\n..###\n..###\n###.#\n###.#");
}

詳細信息

Test #1:

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

input:

2 3

output:

1 3
.##

result:

ok good solution

Test #2:

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

input:

1 1

output:

-1

result:

wrong output format Unexpected end of file - int32 expected