QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#402685 | #6749. Target | altaires1# | WA | 0ms | 3732kb | C++14 | 564b | 2024-05-01 10:43:37 | 2024-05-01 10:43:37 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const double eps=1e-4;
int a[10],b[10];
signed main()
{
double x,y;
cin>>x>>y;
if(x==1)
{
a[1]=1;
x-=1;
}
if(y==1)
{
b[1]=1;
y-=1;
}
for(int i=2;i<=6;i++)
{
x*=2;
y*=2;
if(x>=1)
{
x-=1;
a[i]=1;
}
if(y>=1)
{
y-=1;
b[i]=1;
}
}
cout<<"111111";
if(fabs(y-1)<=eps)
{
cout<<"22222222"<<'\n';
return 0;
}
for(int i=5;i>=2;i--)
{
if(b[i])
{
cout<<2;
}else
{
cout<<1;
}
}
cout<<'\n';
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3732kb
input:
0.5 0.25
output:
1111111121
result:
wrong answer wa