QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#207080#5152. Circular Caramel CookieMinhhoWA 0ms3928kbC++20704b2023-10-08 07:31:352023-10-08 07:31:35

Judging History

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

  • [2023-10-08 07:31:35]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3928kb
  • [2023-10-08 07:31:35]
  • 提交

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 = 4;
    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;
}

详细

Test #1:

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

input:

11

output:

2.236067977

result:

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

Test #2:

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

input:

59

output:

4.000000000

result:

wrong answer 1st numbers differ - expected: '5.0000000', found: '4.0000000', error = '0.2000000'