A message containing letters from A-Z is being encoded to numbers using the following mapping: Given an encoded message containing digits, determine t ...
分类:
其他好文 时间:
2017-07-30 18:12:05
阅读次数:
154
Petya loves lucky numbers. Everybody knows that positive integers are lucky if their decimal representation doesn't contain digits other than 4 and 7. ...
分类:
其他好文 时间:
2017-07-30 00:54:06
阅读次数:
169
/** * Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any ... ...
分类:
其他好文 时间:
2017-07-28 18:20:45
阅读次数:
135
We shall say that an n-digit number is pandigital if it makes use of all the digits 1 to n exactly once. For example, 2143 is a 4-digit pandigital and ...
分类:
其他好文 时间:
2017-07-28 12:50:11
阅读次数:
164
写的不是很好,仅记录自己所写的,仅供参考。 第七题: Reverse digits of an integer. Example1: x = 123, return 321 Example2: x = -123, return -321 public class Solution { public ...
分类:
其他好文 时间:
2017-07-27 10:42:39
阅读次数:
135
题目信息 1069. The Black Hole of Numbers (20) 时间限制100 ms 内存限制65536 kB 代码长度限制16000 B For any 4-digit integer except the ones with all the digits being the ...
分类:
其他好文 时间:
2017-07-26 12:41:48
阅读次数:
171
Take an integer n (n >= 0) and a digit d (0 <= d <= 9) as an integer. Square all numbers k (0 <= k <= n)between 0 and n. Count the numbers of digits d ...
分类:
其他好文 时间:
2017-07-25 11:51:55
阅读次数:
202
Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not contain any leadin ...
分类:
其他好文 时间:
2017-07-23 10:10:14
阅读次数:
133
Digits (digits.cpp/c/pas) Description 给一个关于 的多项式,并给定一个 ,求该多项式在带入该 时的值最后 位数字。 Input 第一行两个整数 、 ;之后的 行,每行两个数 和 ,表示多项式的一项 ;最后一行一个整数 。Output输出 行,按顺序输出该多项式带 ...
分类:
其他好文 时间:
2017-07-22 13:24:32
阅读次数:
203
Digits (digits.cpp/c/pas) Description给一个关于 的多项式,并给定一个 ,求该多项式在带入该 时的值最后 位数字。Input第一行两个整数 、 ;之后的 行,每行两个数 和 ,表示多项式的一项 ;最后一行一个整数 。Output输出 行,按顺序输出该多项式带入 后 ...
分类:
其他好文 时间:
2017-07-22 13:12:31
阅读次数:
186