QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#601515#5152. Circular Caramel CookiexenonideWA 17ms10712kbPython3245b2024-09-30 03:35:142024-09-30 03:35:15

Judging History

你现在查看的是最新测评结果

  • [2024-09-30 03:35:15]
  • 评测
  • 测评结果:WA
  • 用时:17ms
  • 内存:10712kb
  • [2024-09-30 03:35:14]
  • 提交

answer

s = int(input())
t = s
i = 0
s+=1
while(4*i*i<s):
    i+=1
i-=1
temp = i*i*4

if temp+(4*i*2)>=s:
    temp+=(4*i*2)
    
    result = (i**2+(i+1)**2)**0.5
else:
    result = ((i+1)**2+(i+1)**2)**0.5


print(f"{result:.10f}")


詳細信息

Test #1:

score: 100
Accepted
time: 15ms
memory: 10620kb

input:

11

output:

2.2360679775

result:

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

Test #2:

score: 0
Accepted
time: 10ms
memory: 10652kb

input:

59

output:

5.0000000000

result:

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

Test #3:

score: 0
Accepted
time: 9ms
memory: 10648kb

input:

1

output:

1.4142135624

result:

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

Test #4:

score: 0
Accepted
time: 7ms
memory: 10572kb

input:

2

output:

1.4142135624

result:

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

Test #5:

score: 0
Accepted
time: 15ms
memory: 10712kb

input:

3

output:

1.4142135624

result:

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

Test #6:

score: 0
Accepted
time: 11ms
memory: 10564kb

input:

4

output:

2.2360679775

result:

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

Test #7:

score: -100
Wrong Answer
time: 17ms
memory: 10692kb

input:

1000000000

output:

22360.8377526425

result:

wrong answer 1st numbers differ - expected: '17841.8813190', found: '22360.8377526', error = '0.2532780'