题意:
给一个数,是集合的总数和,集合元素只能为2的次幂数,问这样的集合有多少?
题目:
Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows…
代码如下:
package StreamTest;import java.util.ArrayList;public class StreamDemo02 {public static void main(String[] args){ArrayList<String> list new ArrayList<String>();list.add("Tom");list.add("Bom");list.add("jack&q…
题目:GCD and LCM Aizu - 0005
Write a program which computes the greatest common divisor (GCD) and the least common multiple (LCM) of given a and b.
Input
Input consists of several data sets. Each data set contains a and b separated by a singl…
代码如下:
package StreamTest;import java.util.ArrayList;public class StreamDemo06 {public static void main(String[] args) {ArrayList<String> list new ArrayList<String>();list.add("Jack");list.add("Tom");list.add("张敏…
题意:
给一个数n,问1~n内有多少个素数
题目:
Write a program which reads an integer n and prints the number of prime numbers which are less than or equal to n. A prime number is a natural number which has exactly two distin…
题意:
给定一个数组和一个值t,求一个子区间使得其和的绝对值与t的差值最小,如果存在多个,任意解都可行。
题目:
Signals of most probably extra-terrestrial origin have been received and digitalized by The Ae…
题意:
一些正整数可以由一个或多个连续质数的总和表示。给定一个的正整数n,问满足条件的有多少种情况?
题目:
Some positive integers can be represented by a sum of one or more consecutive prime numbers. How many such representat…