QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#104577 | #5152. Circular Caramel Cookie | rania__ | AC ✓ | 66ms | 6856kb | C++14 | 2.0kb | 2023-05-11 07:37:36 | 2023-05-11 07:37:36 |
Judging History
answer
#include<bits/stdc++.h>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/assoc_container.hpp>
#define ll long long
#define endl '\n'
using namespace std;
using namespace __gnu_pbds;
template<typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
const int N = 2e5+7, P1 = 31, P2 = 37, mod= 1e9 + 7;
int mul(int a, int b) {
return (1LL * a * b) % mod;
}
int add(int a, int b) {
a = (a + mod) % mod;
b = (b + mod) % mod;
return (a + b) % mod;
}
int fp(int b, int p) {
if (b == 1 or p == 0)
return 1;
int ret = fp(b, p >> 1);
ret = mul(ret, ret);
if (p & 1)
ret = mul(ret, b);
return ret;
}
ll modInv(ll n) {
return fp(n, mod - 2);
}
ll fact[N], inv[N];
void pre() {
fact[0] = inv[0] = 1;
for (ll i = 1; i < N; i++)
fact[i] = (fact[i - 1] * i) % mod, inv[i] = fp(fact[i], mod - 2);
}
ll nCr(ll n, ll r) {
if ( r > n)
return 0;
return ((fact[n] * inv[r]) % mod * inv[n - r]) % mod;
}
ll nPr(ll n, ll r) {
return ((fact[n] * inv[n - r])) % mod;
}
int s;
long double eps = 1e-8l;
bool can(long double r) {
ll rm = 0;
int x = r;
int y = 1;
while (x > 0) {
while (x > 0 && !(1ll * x * x + 1ll * y * y <= r * r +eps))
--x;
rm += x;
++y;
}
return (4 * rm > s);
}
void doWork() {
cin >> s;
long double l = 0, r = 2 * sqrtl(s);
for (int i = 0; i < 300; ++i) {
long double m = (l + r) / 2;
if (can(m))
r = m;
else
l = m;
}
cout << fixed << setprecision(12) << l << endl;
}
int main() {
ios::sync_with_stdio(false);
cout.tie(nullptr);
cin.tie(nullptr);
pre();
// freopen("bisector.in","r",stdin);
// freopen("bisector.out","w",stdout);
int t = 1;
// cout << primes.size() << endl;
// cin >> t;
while (t--) {
doWork();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 40ms
memory: 6800kb
input:
11
output:
2.236067975264
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #2:
score: 0
Accepted
time: 40ms
memory: 6652kb
input:
59
output:
4.999999999000
result:
ok found '5.0000000', expected '5.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 39ms
memory: 6688kb
input:
1
output:
1.414213558838
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 35ms
memory: 6804kb
input:
2
output:
1.414213558838
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #5:
score: 0
Accepted
time: 42ms
memory: 6808kb
input:
3
output:
1.414213558838
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #6:
score: 0
Accepted
time: 40ms
memory: 6792kb
input:
4
output:
2.236067975264
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #7:
score: 0
Accepted
time: 65ms
memory: 6840kb
input:
1000000000
output:
17841.881318964096
result:
ok found '17841.8813190', expected '17841.8813190', error '0.0000000'
Test #8:
score: 0
Accepted
time: 32ms
memory: 6800kb
input:
16
output:
3.162277658587
result:
ok found '3.1622777', expected '3.1622777', error '0.0000000'
Test #9:
score: 0
Accepted
time: 29ms
memory: 6660kb
input:
60
output:
5.099019512612
result:
ok found '5.0990195', expected '5.0990195', error '0.0000000'
Test #10:
score: 0
Accepted
time: 36ms
memory: 6852kb
input:
276
output:
10.049875620623
result:
ok found '10.0498756', expected '10.0498756', error '0.0000000'
Test #11:
score: 0
Accepted
time: 33ms
memory: 6744kb
input:
476
output:
13.038404810022
result:
ok found '13.0384048', expected '13.0384048', error '0.0000000'
Test #12:
score: 0
Accepted
time: 37ms
memory: 6688kb
input:
1860
output:
25.019992006194
result:
ok found '25.0199920', expected '25.0199920', error '0.0000000'
Test #13:
score: 0
Accepted
time: 42ms
memory: 6764kb
input:
2837456
output:
951.008412160476
result:
ok found '951.0084122', expected '951.0084122', error '0.0000000'
Test #14:
score: 0
Accepted
time: 63ms
memory: 6640kb
input:
871234652
output:
16653.642724641357
result:
ok found '16653.6427246', expected '16653.6427246', error '0.0000000'
Test #15:
score: 0
Accepted
time: 54ms
memory: 6836kb
input:
345230848
output:
10483.500274240469
result:
ok found '10483.5002742', expected '10483.5002742', error '0.0000000'
Test #16:
score: 0
Accepted
time: 57ms
memory: 6764kb
input:
506145784
output:
12693.594368814532
result:
ok found '12693.5943688', expected '12693.5943688', error '0.0000000'
Test #17:
score: 0
Accepted
time: 48ms
memory: 6756kb
input:
253745836
output:
8987.840063107487
result:
ok found '8987.8400631', expected '8987.8400631', error '0.0000000'
Test #18:
score: 0
Accepted
time: 60ms
memory: 6800kb
input:
659345872
output:
14487.745200685992
result:
ok found '14487.7452007', expected '14487.7452007', error '0.0000000'
Test #19:
score: 0
Accepted
time: 48ms
memory: 6692kb
input:
193830482
output:
7855.448300383625
result:
ok found '7855.4483004', expected '7855.4483004', error '0.0000000'
Test #20:
score: 0
Accepted
time: 41ms
memory: 6740kb
input:
981273
output:
559.504244845372
result:
ok found '559.5042448', expected '559.5042448', error '0.0000000'
Test #21:
score: 0
Accepted
time: 38ms
memory: 6736kb
input:
8732419
output:
1667.851312317735
result:
ok found '1667.8513123', expected '1667.8513123', error '0.0000000'
Test #22:
score: 0
Accepted
time: 41ms
memory: 6640kb
input:
9812379
output:
1767.942306750984
result:
ok found '1767.9423068', expected '1767.9423068', error '0.0000000'
Test #23:
score: 0
Accepted
time: 42ms
memory: 6692kb
input:
98273476
output:
5593.614663167279
result:
ok found '5593.6146632', expected '5593.6146632', error '0.0000000'
Test #24:
score: 0
Accepted
time: 66ms
memory: 6616kb
input:
897972343
output:
16907.244512338490
result:
ok found '16907.2445123', expected '16907.2445123', error '0.0000000'
Test #25:
score: 0
Accepted
time: 36ms
memory: 6792kb
input:
28736734
output:
3025.066114979967
result:
ok found '3025.0661150', expected '3025.0661150', error '0.0000000'
Test #26:
score: 0
Accepted
time: 41ms
memory: 6856kb
input:
88234239
output:
5300.238862541951
result:
ok found '5300.2388625', expected '5300.2388625', error '0.0000000'
Test #27:
score: 0
Accepted
time: 65ms
memory: 6652kb
input:
928379434
output:
17191.110289914377
result:
ok found '17191.1102899', expected '17191.1102899', error '0.0000000'
Test #28:
score: 0
Accepted
time: 35ms
memory: 6744kb
input:
23765822
output:
2751.073245117256
result:
ok found '2751.0732451', expected '2751.0732451', error '0.0000000'
Test #29:
score: 0
Accepted
time: 42ms
memory: 6620kb
input:
3427481
output:
1045.143530812869
result:
ok found '1045.1435308', expected '1045.1435308', error '0.0000000'
Test #30:
score: 0
Accepted
time: 46ms
memory: 6804kb
input:
234987432
output:
8649.266327267301
result:
ok found '8649.2663273', expected '8649.2663273', error '0.0000000'
Test #31:
score: 0
Accepted
time: 38ms
memory: 6808kb
input:
3242949
output:
1016.643988818106
result:
ok found '1016.6439888', expected '1016.6439888', error '0.0000000'
Test #32:
score: 0
Accepted
time: 43ms
memory: 6752kb
input:
238423423
output:
8712.268877852657
result:
ok found '8712.2688779', expected '8712.2688779', error '0.0000000'
Test #33:
score: 0
Accepted
time: 38ms
memory: 6808kb
input:
23784378
output:
2752.147706791914
result:
ok found '2752.1477068', expected '2752.1477068', error '0.0000000'
Test #34:
score: 0
Accepted
time: 45ms
memory: 6656kb
input:
83246355
output:
5148.270486289545
result:
ok found '5148.2704863', expected '5148.2704863', error '0.0000000'