QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#406717#6749. Targetqiang9WA 1ms3836kbC++17754b2024-05-07 17:03:252024-05-07 17:03:29

Judging History

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

  • [2024-05-07 17:03:29]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3836kb
  • [2024-05-07 17:03:25]
  • 提交

answer

#include<bits/stdc++.h>
using ll=long long;
//#define int ll
const int N=2e5+10;
const int mod=998244353;
const double eps=1e-4;

void solve()
{
    double a,b;
    std::cin>>a>>b;

    int op=0;
    while(op<=50)
    {
        if(std::fabs(a-b)<=eps)
        {
            break;
        }
        if(a-b<=1e-18){
            a=(a+1)/2.0;
            std::cout<<2;
        }else{
            a=a/2.0;
            std::cout<<1;
        }
        //std::cout<<1e-4<<'\n';
        op++;

    }
    //printf("%.10f %.10f",a,b);
}
signed main()
{
//    std::ios::sync_with_stdio(false);
//    std::cin.tie(nullptr);
    int t=1;
    //std::cin>>t;
    while(t--)
    {
        solve();
    }
    return 0;
}
//GJAH

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3724kb

input:

0.5 0.25

output:

1

result:

ok ok

Test #2:

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

input:

1 0.75

output:

12

result:

ok ok

Test #3:

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

input:

1 0

output:

11111111111111

result:

ok ok

Test #4:

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

input:

0.361954 0.578805

output:

212121212121212121212121212121212121212121212121212

result:

wrong answer wa