QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#132992 | #5152. Circular Caramel Cookie | Rabeya# | WA | 1ms | 3828kb | C++20 | 869b | 2023-08-01 12:43:16 | 2023-08-01 12:43:18 |
Judging History
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;
}
Details
Tip: Click on the bar to expand more detailed information
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'