QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#201264#5152. Circular Caramel CookieDelay_for_five_minutes#WA 0ms3916kbC++20507b2023-10-05 13:25:552023-10-05 13:25:55

Judging History

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

  • [2023-10-05 13:25:55]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3916kb
  • [2023-10-05 13:25:55]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
const double eps = 1e-9;
long long get(double s)
{
    long long ans = 0;
    double p = s * s;
    for(int i = 1;i <= s;i++) {
        ans += 4*((int)(sqrt(p - i*i))) ;
    }
    return ans;
}
int main()
{
    int s;cin >> s;
    double l = 0 , r = sqrt(s) + 20;
    while((r - l) / l > eps) {
        double md = (l + r) / 2;
        if(get(md) >= s) r = md;
        else l = md;
    }
    printf("%.12lf\n",(l + r) / 2);
    return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

11

output:

2.236067977447

result:

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

Test #2:

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

input:

59

output:

5.000000000090

result:

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

Test #3:

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

input:

1

output:

1.414213562472

result:

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

Test #4:

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

input:

2

output:

1.414213562144

result:

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

Test #5:

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

input:

3

output:

1.414213562204

result:

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

Test #6:

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

input:

4

output:

1.414213562792

result:

wrong answer 1st numbers differ - expected: '2.2360680', found: '1.4142136', error = '0.3675445'