QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#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;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3708kb
input:
0.5 0.25
output:
12111111111111111111111111111111111111111111111111
result:
wrong answer wa