xhstar
xhstar
题解
题解 | #碰撞的蚂蚁#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #碰撞的蚂蚁#
552 浏览
0 回复
2021-10-13
xhstar
+关注
碰撞的蚂蚁
http://www.nowcoder.com/practice/83073edaa76b4d179ee0366518a58dba
class Ants { public: double antsCollision(int n) { //只有所有蚂蚁同向时才不会相撞 return 1 - pow(0.5, n-1); } };
C++
举报
收藏
赞 2
评论加载中...