QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#132992#5152. Circular Caramel CookieRabeya#WA 1ms3828kbC++20869b2023-08-01 12:43:162023-08-01 12:43:18

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:43:18]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:3828kb
  • [2023-08-01 12:43:16]
  • 提交

answer

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

const int N = 2e5 + 5;

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

    ll n;
    cin>> n;
    ld l = 0, r = 1e6;
    for(int i=0; i<100; i++) {
        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;
        }
        cnt *= 2;
        if(cnt >= n) {
            r = mid;
            //cout<< mid << " yes" << endl;
        }
        else l = mid;
    }
    cout<< setprecision(12) << fixed << r << endl;
}


詳細信息

Test #1:

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

input:

11

output:

2.236067977500

result:

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

Test #2:

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

input:

59

output:

5.000000000000

result:

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

Test #3:

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

input:

1

output:

1.414213562373

result:

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

Test #4:

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

input:

2

output:

1.414213562373

result:

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

Test #5:

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

input:

3

output:

1.414213562373

result:

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

Test #6:

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

input:

4

output:

1.414213562373

result:

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