QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#501339 | #5152. Circular Caramel Cookie | Umok | WA | 0ms | 3968kb | C++20 | 819b | 2024-08-02 16:56:13 | 2024-08-02 16:56:13 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
const int N = 1e6 + 5;
#define int long long
typedef pair<int, int> PII;
#define MAX LONG_LONG_MAX
void solve()
{
int n;
cin >> n;
double l = 0, r = 20000;
while (l + 1e-8 < r)
{
double mid = (l + r) / 2.0;
int sum = 0;
int h = mid;
for (int i = 1; i <= mid; i++)
{
while (i * i + h * h > mid * mid)
h--;
if (h == 0)
break;
sum += h;
}
if (sum * 4 < n)
l = mid;
else
r = mid;
}
printf("%.10lf\n", r);
}
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
int tcase;
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3964kb
input:
11
output:
2.2360679850
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3832kb
input:
59
output:
5.0000000010
result:
ok found '5.0000000', expected '5.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 0ms
memory: 3968kb
input:
1
output:
1.4142135660
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3888kb
input:
2
output:
1.4142135660
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3832kb
input:
3
output:
1.4142135660
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 3908kb
input:
4
output:
1.4142135660
result:
wrong answer 1st numbers differ - expected: '2.2360680', found: '1.4142136', error = '0.3675445'