index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a250.py
blob: 3065be4e1e5f45051bca847563169a33d9214015 (
plain
)
1
2
3
def
Sum_of_Inverse_Divisors
(
N
,
Sum
):
ans
=
float
(
Sum
)
*
1.0
/
float
(
N
);
return
round
(
ans
,
2
);