QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#207081#5152. Circular Caramel CookieMinhhoWA 1ms3696kbC++20706b2023-10-08 07:32:122023-10-08 07:32:12

Judging History

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

  • [2023-10-08 07:32:12]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3696kb
  • [2023-10-08 07:32:12]
  • 提交

answer

#define taskname "C"
#include <bits/stdc++.h>
#define ld long double
#define int long long

using namespace std;
const ld lim = sqrt(2.0L) - 1;

inline int cal(ld x)
{
    int le = (x - trunc(x) >= lim ? trunc(x) : trunc(x-1));
    int wi = sqrt(x*x-le*le);
    wi <<= 1;
    le <<= 1;
    return 2 * le * wi - min(le, wi) * min(le, wi);
}

signed main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr); cout.tie(nullptr);
    int s; ld l = 0, r = 1e5;
    cin>>s;
    for (int i=1; i<=1000; i++)
    {
        ld m = (l+r)/2;
//        cerr<<m<<" "<<cal(m)<<"\n";
        if (cal(m) > s) r = m;
        else l = m;
    }
    cout<<fixed<<setprecision(9)<<r;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

11

output:

2.236067977

result:

ok found '2.2360680', expected '2.2360680', error '0.0000000'

Test #2:

score: 0
Accepted
time: 1ms
memory: 3624kb

input:

59

output:

5.000000000

result:

ok found '5.0000000', expected '5.0000000', error '0.0000000'

Test #3:

score: 0
Accepted
time: 1ms
memory: 3692kb

input:

1

output:

1.414213562

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #4:

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

input:

2

output:

1.414213562

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #5:

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

input:

3

output:

1.414213562

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #6:

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

input:

4

output:

2.236067977

result:

ok found '2.2360680', expected '2.2360680', error '0.0000000'

Test #7:

score: -100
Wrong Answer
time: 1ms
memory: 3592kb

input:

1000000000

output:

100000.000000000

result:

wrong answer 1st numbers differ - expected: '17841.8813190', found: '100000.0000000', error = '4.6047901'