QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#133000#5152. Circular Caramel CookieRabeya#WA 1ms3840kbC++20922b2023-08-01 12:49:442023-08-01 12:49:47

Judging History

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

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-08-01 12:49:47]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3840kb
  • [2023-08-01 12:49:44]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define endl '\n'
#define ll long long
#define ld long double

const int N = 2e5 + 5;
const ld eps = 0.00000001;

int main() {
    ios_base::sync_with_stdio(false); cin.tie(NULL);

    ll n;
    cin>> n;
    ld l = 0, r = 1e6;
    while(l <= r-eps) {
        ld mid = (l+r)/2;

        ll height = 1;
        ll cnt = 0;
        while(height <= mid) {
            ld base = sqrt(mid*mid - height*height);
            ll baseint = base;
            baseint *= 2;
            cnt += baseint;
            height++;
            if(cnt * 2 >= n) break;
            //cout<< mid << " " << cnt*2 << endl;
        }
        //cout<< cnt*2<< endl;
        cnt *= 2;
        if(cnt >= n) {
            r = mid;
            //cout<< mid << " yes" << endl;
        }
        else l = mid;
    }
    cout<< setprecision(12) << fixed << r << endl;
}


Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

input:

11

output:

2.236067977890

result:

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

Test #2:

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

input:

59

output:

5.000000001587

result:

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

Test #3:

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

input:

1

output:

1.414213564033

result:

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

Test #4:

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

input:

2

output:

1.414213564033

result:

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

Test #5:

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

input:

3

output:

1.414213564033

result:

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

Test #6:

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

input:

4

output:

1.414213564033

result:

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