QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#594243 | #6749. Target | Bulonte | WA | 0ms | 3708kb | C++20 | 524b | 2024-09-27 20:33:36 | 2024-09-27 20:33:37 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
int main()
{
double a, b;
cin >> a >> b;
string s;
if (b == 1.0)
b = 0.9999999999999999999999;
for (int i = 1; i <= 50; i++)
{
b *= 2;
if (b >= 1)
{
s += '1';
b -= 1;
}
else
s += '0';
}
for (int i = 0; i < 50; i++)
{
if (s[i] == '1')
cout << 2;
else
cout << 1;
}
return 0;
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3708kb
input:
0.5 0.25
output:
12111111111111111111111111111111111111111111111111
result:
wrong answer wa