码迷,mamicode.com
首页 >  
搜索关键字:round    ( 15566个结果
转载:CSS3 圆角(border-radius)
前缀例1例2:无边框书写顺序其它支持性值:半径的长度前缀-moz(例如 -moz-border-radius)用于Firefox-webkit(例如:-webkit-border-radius)用于Safari和Chrome。例1#round { padding:10px; width:300...
分类:Web程序   时间:2014-11-19 15:37:49    阅读次数:192
Codeforces Round #276 (Div. 1)
给俩数, 求他俩之间二进制数中1最多的,有多个输出最小的;贪心,从小到大加能加就加,最后可能碰到一个不能加了但是当前数比l小,那么就加上这个数,然后从大到小,能减就减,见到符合条件#include#include#includeusing namespace std;int main(){ l...
分类:其他好文   时间:2014-11-19 13:56:37    阅读次数:175
Codeforces Round #277.5 (Div. 2) c
/** ?*?@brief?Codeforces?Round?#277.5?(Div.?2)?c ?*?@file?c.c ?*?@author?面码 ?*?@created?2014/11/19?11:47 ?*?@edited??2014/11/19?11:47 ?*?@type?greedy ?*/ #include?<st...
分类:其他好文   时间:2014-11-19 12:44:12    阅读次数:229
转-CSS3 圆角(border-radius)
CSS3 圆角(border-radius)前缀例1例2:无边框书写顺序其它支持性值:半径的长度前缀-moz(例如 -moz-border-radius)用于Firefox-webkit(例如:-webkit-border-radius)用于Safari和Chrome。例1#round { p...
分类:Web程序   时间:2014-11-19 12:06:44    阅读次数:190
abap四舍五入的函数
DATA p1 TYPE p DECIMALS 2 VALUE '1.6'.DATA p2 TYPE i .CALL FUNCTION 'ROUND' EXPORTING DECIMALS = 0 input = p1 SIGN ...
分类:其他好文   时间:2014-11-19 10:36:11    阅读次数:273
sql 关键字的用法
coalesce( T.GoodsCode,'0') 若 T.GoodsCode 为NULL 这 用0替换round(S.SaleEarning,2) 保留两位小数SUBSTRING(zb.accTime,9,2) 截取字符 从第9个开始截取2个cast(SUBSTRING('11111111111...
分类:数据库   时间:2014-11-19 07:06:39    阅读次数:366
Codeforces Round #277.5 (Div. 2) b
/** ?*?@brief?Codeforces?Round?#277.5?(Div.?2)?b ?*?@file?b.c ?*?@author?面码 ?*?@created?2014/11/18?17:22 ?*?@edited??2014/11/18?17:22 ?*?@type?greedy ?* ?*/ #include?...
分类:其他好文   时间:2014-11-19 02:24:54    阅读次数:137
Codeforces Round #277.5 (Div. 2)D Unbearable Controversy of Being (暴力)
这道题我临场想到了枚举菱形的起点和终点,然后每次枚举起点指向的点,每个指向的点再枚举它指向的点看有没有能到终点的,有一条就把起点到终点的路径个数加1,最后ans+=C(路径总数,2)。每两个点都这么弄。但是我考虑时间复杂度n2前面的系数过大会超时,再想别的方法也没想出来。。其实思路就是这样的,只不过...
分类:其他好文   时间:2014-11-18 23:36:36    阅读次数:304
POJ 3077-Rounders(水题乱搞)
Rounders Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7697   Accepted: 4984 Description For a given number, if greater than ten, round it to the nearest t...
分类:其他好文   时间:2014-11-18 14:47:03    阅读次数:236
Codeforces Round #277.5 (Div. 2)-C
简单细节题: #include #include #include #include #include #include #define rep(i,a,b) for(int i=(a);i=(b);i--) #define clr(a,x) memset(a,x,sizeof a) typedef lon...
分类:其他好文   时间:2014-11-18 13:35:06    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!