QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#226778 | #5152. Circular Caramel Cookie | Fyind# | WA | 1ms | 3796kb | C++23 | 739b | 2023-10-26 16:04:58 | 2023-10-26 16:04:58 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define _ <<" "<<
#define sz(x) ((int) (x).size())
typedef pair<int, int> pii;
typedef long long ll;
const int maxn = 1e5 + 5;
const long double eps = 1e-13;
int n, m;
ll s;
bool check(long double x) {
if (x >= maxn) return true;
ll cur = 0;
for (ll i = 1;i <= x; ++i) {
cur += (int)sqrt(x*x - i*i);
}
cur *= 4;
return cur >= s;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> s;
long double L = 1, R = INT_MAX;
while (R-L > eps) {
long double M = (L+R)/2;
if (check(M)) R = M;
else L = M;
}
cout << fixed << setprecision(8) << L << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3780kb
input:
11
output:
2.23606798
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3680kb
input:
59
output:
5.00000000
result:
ok found '5.0000000', expected '5.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 3664kb
input:
1
output:
1.41421356
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 3624kb
input:
2
output:
1.41421356
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #5:
score: 0
Accepted
time: 1ms
memory: 3796kb
input:
3
output:
1.41421356
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #6:
score: -100
Wrong Answer
time: 1ms
memory: 3588kb
input:
4
output:
1.41421356
result:
wrong answer 1st numbers differ - expected: '2.2360680', found: '1.4142136', error = '0.3675445'