QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#601518 | #5152. Circular Caramel Cookie | xenonide | WA | 17ms | 10772kb | Python3 | 222b | 2024-09-30 03:48:16 | 2024-09-30 03:48:17 |
Judging History
answer
s = int(input())
i=0
while(True):
if 4*i*i>s:
result = (i**2+i**2)**0.5
break
if 4*i*i+(4*2*i)>s:
result = ((i+1)**2+i**2)**0.5
break
i+=1
print(f"{result:.10f}")
详细
Test #1:
score: 100
Accepted
time: 14ms
memory: 10628kb
input:
11
output:
2.2360679775
result:
ok found '2.2360680', expected '2.2360680', error '0.0000000'
Test #2:
score: 0
Accepted
time: 0ms
memory: 10688kb
input:
59
output:
5.0000000000
result:
ok found '5.0000000', expected '5.0000000', error '0.0000000'
Test #3:
score: 0
Accepted
time: 9ms
memory: 10688kb
input:
1
output:
1.4142135624
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #4:
score: 0
Accepted
time: 8ms
memory: 10624kb
input:
2
output:
1.4142135624
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #5:
score: 0
Accepted
time: 15ms
memory: 10752kb
input:
3
output:
1.4142135624
result:
ok found '1.4142136', expected '1.4142136', error '0.0000000'
Test #6:
score: 0
Accepted
time: 8ms
memory: 10688kb
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: 10772kb
input:
1000000000
output:
22360.8377526425
result:
wrong answer 1st numbers differ - expected: '17841.8813190', found: '22360.8377526', error = '0.2532780'