QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#383502#6749. Target18270034912WA 0ms3888kbC++14452b2024-04-09 14:56:572024-04-09 14:56:57

Judging History

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

  • [2024-04-09 14:56:57]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3888kb
  • [2024-04-09 14:56:57]
  • 提交

answer


#include<bits/stdc++.h>
using namespace std;
#define ll long long
string ans; 
int main()
{
    double a,b;
    cin>>a>>b;
    int cnt=0;
    while(fabs(a-b)>1e-4&&cnt<=50)
    {
        if(a<b)
        {
            ans+='2';
            a=(a-1)*0.5+1;
            cnt++;
        }
        else
        {
            ans+='1';
            a=a*0.5;
            cnt++;
        }
    }
    cout<<ans<<endl;
    return 0;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3700kb

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

score: 0
Accepted
time: 0ms
memory: 3824kb

input:

1 0.75

output:

12

result:

ok ok

Test #3:

score: 0
Accepted
time: 0ms
memory: 3888kb

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

score: -100
Wrong Answer
time: 0ms
memory: 3768kb

input:

0.361954 0.578805

output:

212121212121212121212121212121212121212121212121212

result:

wrong answer wa