这道题巨坑啊,样例中以-1结束输入的,所以我就天真的以为测试数据也是以-1结束输入的其实人家原文中说:Input is terminated by a line containing a negative integer.是以负数结束输入,囧rz!我这种英语渣渣,怎么可能注意到这种错误我还以为是算法...
分类:
其他好文 时间:
2014-08-25 20:42:44
阅读次数:
298
Description
Given a base b and two non-negative base b integers p and m, compute p mod m and print the result as a base b integer. p mod m is defined as the smallest non-negative integer k such tha...
分类:
编程语言 时间:
2014-08-25 19:20:04
阅读次数:
230
Network of SchoolsTime Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:123664-bit integer IO format:%lld Java class n...
分类:
Web程序 时间:
2014-08-25 19:08:04
阅读次数:
201
数据类型格式化函数: PostgreSQL格式化函数提供一套有效的工具用于把各种数据类型(日期/时间、integer、floating point和numeric)转换成格式化的字符串以及反过来从格式化的字符串转换成指定的数据类型。下面列出了这些函数,它们都遵循一个公共的调用习惯:第一个参数是待格式...
分类:
数据库 时间:
2014-08-25 18:53:54
阅读次数:
409
1、首先要在Oracle数据库中建对应的表,Oracle数据库中的字段类型和Sql Server 有所不同,Oracle中常用的有varchar2、integer、nchar、date,Sql Server 的字段类型相对多一些,uniqueidentifier类型的长度是36。2、打开管理工具——...
分类:
数据库 时间:
2014-08-25 18:40:44
阅读次数:
309
题目链接The problem is quite simple. You're given a number N and a positive integer K. Tell if N can be represented as a sum of K prime numbers (not neces...
分类:
其他好文 时间:
2014-08-25 13:19:04
阅读次数:
270
Surprising StringsTime Limit: 1000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:309664-bit integer IO format:%lld Java class n...
分类:
其他好文 时间:
2014-08-25 11:40:14
阅读次数:
234
//这个题开始自己运行没问题了,提交runtime error。 很不解,网上查到一般是数组越界,后来自己又测试,发现当输入的数过大,超过int//范围的时候Integer.parseInt(st) 就会报错。所以对程序做了修改,之后accepted。import java.util.Scanner...
分类:
编程语言 时间:
2014-08-25 11:33:14
阅读次数:
216
Lucky SumTime Limit: 2000msMemory Limit: 262144KBThis problem will be judged onCodeForces. Original ID:121A64-bit integer IO format:%I64d Java class n...
分类:
其他好文 时间:
2014-08-25 09:59:04
阅读次数:
357
int是java提供的8种原始数据类型之一。Java为每个原始类型提供了封装类,Integer是java为int提供的封装类。int的默认值为0,而Integer的默认值为null,即Integer可以区分出未赋值和值为0的区别,int则无法表达出未赋值的情况,例如,要想表达出没有参加考试和考试成绩...
分类:
编程语言 时间:
2014-08-24 22:01:43
阅读次数:
188