QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#412793 | #6749. Target | incloud# | WA | 1ms | 3544kb | C++14 | 485b | 2024-05-16 19:35:31 | 2024-05-16 19:35:31 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define ll long long
int main() {
double a,b;
cin>>a>>b;
b+=3e-5;
stack<int> ans;
int cnt=0;
while(abs(a-b)>0.0001){
if(2*b<=1){
ans.push(1);
b*=2;
}
else{
b*=2;
b-=1;
ans.push(2);
}
}
while(ans.size()){
cout<<ans.top()<<' ';
ans.pop();
}
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3544kb
input:
0.5 0.25
output:
1
result:
wrong answer wa