QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#226787 | #5152. Circular Caramel Cookie | Fyind# | WA | 1ms | 3904kb | C++23 | 821b | 2023-10-26 16:18:59 | 2023-10-26 16:18:59 |
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;
// ll calc(long double x, ll i) {
// ll ret = 0;
// while ()
// }
bool check(ll r2) {
if (sqrt(r2) >= maxn) return true;
ll cur = 0;
for (ll i = 1;i*i <= r2; ++i) {
cur += (ll)(sqrt(r2 - i*i) + eps);
}
cur *= 4;
return cur >= s;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> s;
ll L = 1, R = LLONG_MAX/2;
while (R-L > eps) {
ll M = (L+R)/2;
if (check(M)) R = M;
else L = M+1;
}
cout << fixed << setprecision(8) << sqrt(L) << '\n';
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3904kb
input:
11
output:
2.23606798
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #2:
score: 0
Accepted
time: 1ms
memory: 3788kb
input:
59
output:
5.00000000
result:
ok found '5.0000000', expected '5.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 1ms
memory: 3832kb
input:
1
output:
1.41421356
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 1ms
memory: 3900kb
input:
2
output:
1.41421356
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #5:
score: 0
Accepted
time: 0ms
memory: 3780kb
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: 3816kb
input:
4
output:
1.41421356
result:
wrong answer 1st numbers differ - expected: '2.2360680', found: '1.4142136', error = '0.3675445'