Distance QueriesTime Limit: 2000msMemory Limit: 30000KBThis problem will be judged onPKU. Original ID:198664-bit integer IO format:%lld Java class nam...
分类:
其他好文 时间:
2014-08-07 18:28:00
阅读次数:
215
AsyncTask是抽象类.AsyncTask定义了三种泛型类型 Params,Progress和Result。
Params 启动任务执行的输入参数,比如HTTP请求的URL。 一般用String类型;
Progress 后台任务执行的百分比。 一般用Integer类型;
Result 后台执行任务最终返回的结果,一般用byte[]或者String。...
分类:
移动开发 时间:
2014-08-07 13:24:25
阅读次数:
290
题目: Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see be....
分类:
编程语言 时间:
2014-08-07 12:08:49
阅读次数:
260
SubsequenceTime Limit: 1000msMemory Limit: 32768KBThis problem will be judged onHDU. Original ID:353064-bit integer IO format:%I64d Java class name:Ma...
分类:
其他好文 时间:
2014-08-07 00:22:07
阅读次数:
205
To Add or Not to AddTime Limit: 2000msMemory Limit: 262144KBThis problem will be judged onCodeForces. Original ID:231C64-bit integer IO format:%I64d J...
分类:
其他好文 时间:
2014-08-06 22:39:02
阅读次数:
223
Burning BridgesTime Limit: 5000msMemory Limit: 32768KBThis problem will be judged onZJU. Original ID:258864-bit integer IO format:%lld Java class name...
分类:
其他好文 时间:
2014-08-06 22:26:52
阅读次数:
376
constrains装饰用于对字段进行限制应用举例:定义列:age = fields.Integer(string="age") 方法:@api.constrains('age')def _check_age(self): if self.age<16: raise Val...
题目链接:uva 11859 - Division Game
题目大意:给定一个N*M的矩阵,每次可以选择同一行中的若干个数,把它们变成它们的真因子。问说先手的可否胜利。
解题思路:将每一行中每个数的质因子看成是一个火柴,那么对于一行来说就是一个单堆的Nim游戏。
#include
#include
#include
using namespace std;
int div...
分类:
其他好文 时间:
2014-08-06 12:02:31
阅读次数:
208
这个我就直接上代码了,最开始把“abc123“也算作合法的了,后来查了一下atoi的定义,把这种去掉了。
public class Solution {
public static int atoi(String inStr) {
long result = 0L;
/*
* 网上查了一下,atoi函数的定义是如果第一个非空格字符存在,是数字或者正负号则开始做类型转换,
*...
分类:
其他好文 时间:
2014-08-06 10:36:31
阅读次数:
193
Problem Description:
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
分析:题目的意思是将罗马数字转化成整数,首先是在网上找到关于罗马数字表示法的规则如下:
1、计数方法:① 罗马数字就...
分类:
其他好文 时间:
2014-08-05 22:45:10
阅读次数:
283