QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#201434#5152. Circular Caramel CookieRd_rainydays#WA 1ms3732kbC++14438b2023-10-05 14:20:152023-10-05 14:20:15

Judging History

This is the latest submission verdict.

  • [2023-10-05 14:20:15]
  • Judged
  • Verdict: WA
  • Time: 1ms
  • Memory: 3732kb
  • [2023-10-05 14:20:15]
  • Submitted

answer

#include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cmath>
#define ll long long
using namespace std;
ll s;
ll l,r,mid,ans;
int main(){
  scanf("%lld",&s);
  l=0,r=10000*s;
  while(l<=r){
	mid=(l+r)/2;
	ll len=floor(sqrt(mid));
	ll sum=0;
	for(ll r=1;r<=len;r++)sum=sum+floor(sqrt(mid-r*r));
	sum*=4;
	if(sum>=s)ans=mid,r=mid-1;
	else l=mid+1;
  }
  printf("%.10Lf\n",sqrtl(1.0*ans));
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3680kb

input:

11

output:

2.2360679775

result:

ok found '2.2360680', expected '2.2360680', error '0.0000000'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3732kb

input:

59

output:

5.0000000000

result:

ok found '5.0000000', expected '5.0000000', error '0.0000000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3728kb

input:

1

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3604kb

input:

2

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3608kb

input:

3

output:

1.4142135624

result:

ok found '1.4142136', expected '1.4142136', error '0.0000000'

Test #6:

score: -100
Wrong Answer
time: 1ms
memory: 3628kb

input:

4

output:

1.4142135624

result:

wrong answer 1st numbers differ - expected: '2.2360680', found: '1.4142136', error = '0.3675445'