QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#383515#6749. Target18270034912WA 0ms3848kbC++14452b2024-04-09 15:09:222024-04-09 15:09:23

Judging History

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

  • [2024-04-09 15:09:23]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3848kb
  • [2024-04-09 15:09:22]
  • 提交

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<=51)
    {
        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: 3836kb

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

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

input:

1 0.75

output:

12

result:

ok ok

Test #3:

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

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

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

input:

0.361954 0.578805

output:

2121212121212121212121212121212121212121212121212121

result:

wrong answer wa