QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#593640 | #7637. Exactly Three Neighbors | rotcar07 | WA | 0ms | 3612kb | C++20 | 557b | 2024-09-27 15:17:31 | 2024-09-27 15:17:33 |
Judging History
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