QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#694424 | #6749. Target | NULL_SF | WA | 0ms | 3700kb | C++23 | 273b | 2024-10-31 17:55:36 | 2024-10-31 17:55:37 |
Judging History
answer
#include <iostream>
#include <math.h>
using namespace std;
signed main()
{
double a,b;
cin>>a>>b;
a=0;
cout<<"11111111111111111111";
long long aa=b*pow(2,30);
while(aa){
if(aa&1) cout<<'2';
else cout<<'1';
aa>>=1;
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3700kb
input:
0.5 0.25
output:
1111111111111111111111111111111111111111111111112
result:
wrong answer wa