码迷,mamicode.com
首页 >  
搜索关键字:integer    ( 14932个结果
postgres的序列问题。
之前新建了张表,如下: 1 CREATE TABLE hl_14.cells 2 ( 3 cid integer NOT NULL DEFAULT nextval('cells_cid_seq'::regclass), 4 datetime timestamp without time zo...
分类:其他好文   时间:2014-08-26 18:57:16    阅读次数:191
POJ 2117 Electricity
ElectricityTime Limit: 5000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:211764-bit integer IO format:%lld Java class name:Mai...
分类:其他好文   时间:2014-08-26 13:23:46    阅读次数:219
Java中的大数字
其实Java语言并不能对现实生活中所有对象建模。 比如:实数。Java不能完全表示显示生活中的实数。 Integer.MAX_VALUE :?2147483647 Integer.MIN_VALUE : -2147483648 如果超过要表示小于-2147483648或者大于214...
分类:编程语言   时间:2014-08-26 12:00:46    阅读次数:301
定时往oracle插入数据
1创建存储过程create or replace procedure job_proc isbegininsert into yy (yid) values (sysdate);end;2创建jobDECLARE JOB BINARY_INTEGER; --任务ID v_be...
分类:数据库   时间:2014-08-26 11:16:35    阅读次数:242
divide an integer into X parts (as even as possible)
the algorithm is like this: it evenly spreads an integer N over K cells.for i = 0 to K array[i] = N / K # integer division# divide up the remain...
分类:其他好文   时间:2014-08-26 05:20:04    阅读次数:205
URAL 1005 Stone Pile
看数据规模,也懒得想了,裸DFS得了 1 import java.util.Scanner; 2 3 public class P1005 4 { 5 private static int best = Integer.MAX_VALUE; 6 7 //a[] 原始值 8 ...
分类:其他好文   时间:2014-08-26 01:41:55    阅读次数:362
POJ 1144 Network
NetworkTime Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:114464-bit integer IO format:%lld Java class name:MainA T...
分类:Web程序   时间:2014-08-25 22:28:34    阅读次数:340
【Leet Code】Reverse Integer——“%”你真的懂吗?
Reverse Integer  Total Accepted: 27372 Total Submissions: 68133My Submissions Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 题目咋看起...
分类:其他好文   时间:2014-08-25 21:12:54    阅读次数:198
UVA - 1426 Discrete Square Roots (模方程)
Description A square root of a number x is a number r such that r2 = x. A discrete square root of a non-negative integer x is a non-negative integer r such that r2 x mod N , 0r < N , where ...
分类:其他好文   时间:2014-08-25 21:10:04    阅读次数:252
HDU 3836 Equivalent Sets
Equivalent SetsTime Limit: 4000msMemory Limit: 104857KBThis problem will be judged onHDU. Original ID:383664-bit integer IO format:%I64d Java class na...
分类:其他好文   时间:2014-08-25 21:08:34    阅读次数:243
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!