/* 头部 */ #header { position: relative; height: 280px; margin: 0; background: #020031; background: -moz-linear-gradient(45deg,#020031 0,#6d3353 100%); background: -webkit-gradient(linear,left bottom,right top,color-stop(0%,#020031),color-stop(100%,#6d3353)); background: -webkit-linear-gradient(45deg,#020031 0,#6d3353 100%); background: -o-linear-gradient(45deg,#020031 0,#6d3353 100%); background: -ms-linear-gradient(45deg,#020031 0,#6d3353 100%); background: linear-gradient(45deg,#020031 0,#6d3353 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#020031', endColorstr='#6d3353', GradientType=1); -webkit-box-shadow: inset 0 3px 7px rgba(0,0,0,.2),inset 0 -3px 7px rgba(0,0,0,.2); -moz-box-shadow: inset 0 3px 7px rgba(0,0,0,.2),inset 0 -3px 7px rgba(0,0,0,.2); box-shadow: inset 0 3px 7px rgba(0,0,0,.2),inset 0 -3px 7px rgba(0,0,0,.2); }
摘要: 直播比赛现场 题解地址 1.选择题 【题目要求】 只允许使用四则运算,求出任意正数 $x$ 的自然对数 $\ln (x)$ 【输入】 一个数 $x,(0<x<10^9)$ 【输出】 一个数 $\ln (x),$保留 6 位小数。 【时空限制】 $t \leq 1 sec;m \leq 128 MiB 阅读全文
posted @ 2020-07-27 15:02 是小红吖 阅读(215) 评论(0) 推荐(1) 编辑