QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#594243#6749. TargetBulonteWA 0ms3708kbC++20524b2024-09-27 20:33:362024-09-27 20:33:37

Judging History

你现在查看的是最新测评结果

  • [2024-09-27 20:33:37]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3708kb
  • [2024-09-27 20:33:36]
  • 提交

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