上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页

2017年3月20日

Project Euler Problem 12: Highly divisible triangular number

摘要: Highly divisible triangular numberProblem 12The sequence of triangle numbers is generated by adding the natural numbers. So the 7th tr... 阅读全文

posted @ 2017-03-20 22:17 海岛Blog 阅读(162) 评论(0) 推荐(0) 编辑

Project Euler Problem 12: Highly divisible triangular number

摘要: Highly divisible triangular numberProblem 12The sequence of triangle numbers is generated by adding the natural numbers. So the 7th tr... 阅读全文

posted @ 2017-03-20 22:17 海岛Blog 阅读(145) 评论(0) 推荐(0) 编辑

Project Euler Problem 11: Largest product in a grid

摘要: Largest product in a gridProblem 11In the 20×20 grid below, four numbers along a diagonal line have been marked in red.08 02 22 97 38 ... 阅读全文

posted @ 2017-03-20 20:40 海岛Blog 阅读(124) 评论(0) 推荐(0) 编辑

Project Euler Problem 11: Largest product in a grid

摘要: Largest product in a gridProblem 11In the 20×20 grid below, four numbers along a diagonal line have been marked in red.08 02 22 97 38 ... 阅读全文

posted @ 2017-03-20 20:40 海岛Blog 阅读(148) 评论(0) 推荐(0) 编辑

Project Euler Problem 10: Summation of primes

摘要: Summation of primesProblem 10The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.Find the sum of all the primes below two million.C++... 阅读全文

posted @ 2017-03-20 01:16 海岛Blog 阅读(105) 评论(0) 推荐(0) 编辑

Project Euler Problem 10: Summation of primes

摘要: Summation of primesProblem 10The sum of the primes below 10 is 2 + 3 + 5 + 7 = 17.Find the sum of all the primes below two million.C++... 阅读全文

posted @ 2017-03-20 01:16 海岛Blog 阅读(95) 评论(0) 推荐(0) 编辑

Project Euler Problem 9: Special Pythagorean triplet

摘要: Special Pythagorean tripletProblem 9A Pythagorean triplet is a set of three natural numbers,a using namespace std;int main(){ int n... 阅读全文

posted @ 2017-03-20 00:09 海岛Blog 阅读(114) 评论(0) 推荐(0) 编辑

Project Euler Problem 9: Special Pythagorean triplet

摘要: Special Pythagorean tripletProblem 9A Pythagorean triplet is a set of three natural numbers,a using namespace std;int main(){ int n... 阅读全文

posted @ 2017-03-20 00:09 海岛Blog 阅读(109) 评论(0) 推荐(0) 编辑

2017年3月19日

Project Euler Problem 8: Largest product in a series

摘要: Largest product in a seriesProblem 8The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × 8 × 9... 阅读全文

posted @ 2017-03-19 16:54 海岛Blog 阅读(126) 评论(0) 推荐(0) 编辑

Project Euler Problem 8: Largest product in a series

摘要: Largest product in a seriesProblem 8The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × 8 × 9... 阅读全文

posted @ 2017-03-19 16:54 海岛Blog 阅读(150) 评论(0) 推荐(0) 编辑

Project Euler Problem 7: 10001st prime

摘要: 10001st primeProblem 7By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.What is the ... 阅读全文

posted @ 2017-03-19 15:03 海岛Blog 阅读(165) 评论(0) 推荐(0) 编辑

Project Euler Problem 7: 10001st prime

摘要: 10001st primeProblem 7By listing the first six prime numbers: 2, 3, 5, 7, 11, and 13, we can see that the 6th prime is 13.What is the ... 阅读全文

posted @ 2017-03-19 15:03 海岛Blog 阅读(121) 评论(0) 推荐(0) 编辑

Project Euler Problem 48: Self powers

摘要: Self powersProblem 48The series, 11 + 22 + 33 + ... + 1010 = 10405071317.Find the last ten digits of the series, 11 + 22 + 33 + ... + ... 阅读全文

posted @ 2017-03-19 09:00 海岛Blog 阅读(189) 评论(0) 推荐(0) 编辑

Project Euler Problem 6: Sum square difference

摘要: Sum square differenceProblem 6The sum of the squares of the first ten natural numbers is,12 + 22 + ... + 102 = 385The square of the su... 阅读全文

posted @ 2017-03-19 08:03 海岛Blog 阅读(120) 评论(0) 推荐(0) 编辑

Project Euler Problem 6: Sum square difference

摘要: Sum square differenceProblem 6The sum of the squares of the first ten natural numbers is,12 + 22 + ... + 102 = 385The square of the su... 阅读全文

posted @ 2017-03-19 08:03 海岛Blog 阅读(112) 评论(0) 推荐(0) 编辑

Project Euler Problem 5: Smallest multiple

摘要: Smallest multipleProblem 52520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.Wh... 阅读全文

posted @ 2017-03-19 07:34 海岛Blog 阅读(124) 评论(0) 推荐(0) 编辑

Project Euler Problem 5: Smallest multiple

摘要: Smallest multipleProblem 52520 is the smallest number that can be divided by each of the numbers from 1 to 10 without any remainder.Wh... 阅读全文

posted @ 2017-03-19 07:34 海岛Blog 阅读(137) 评论(0) 推荐(0) 编辑

Project Euler Problem 4: Largest palindrome product

摘要: Largest palindrome productProblem 4A palindromic number reads the same both ways. The largest palindrome made from the product of two ... 阅读全文

posted @ 2017-03-19 06:39 海岛Blog 阅读(111) 评论(0) 推荐(0) 编辑

Project Euler Problem 4: Largest palindrome product

摘要: Largest palindrome productProblem 4A palindromic number reads the same both ways. The largest palindrome made from the product of two ... 阅读全文

posted @ 2017-03-19 06:39 海岛Blog 阅读(104) 评论(0) 推荐(0) 编辑

2017年3月18日

Project Euler Problem 3: Largest prime factor

摘要: Largest prime factorProblem 3The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 60085147514... 阅读全文

posted @ 2017-03-18 07:45 海岛Blog 阅读(96) 评论(0) 推荐(0) 编辑

Project Euler Problem 3: Largest prime factor

摘要: Largest prime factorProblem 3The prime factors of 13195 are 5, 7, 13 and 29.What is the largest prime factor of the number 60085147514... 阅读全文

posted @ 2017-03-18 07:45 海岛Blog 阅读(176) 评论(0) 推荐(0) 编辑

2017年3月17日

Project Euler Problem 2: Even Fibonacci numbers

摘要: Even Fibonacci numbersProblem 2Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with... 阅读全文

posted @ 2017-03-17 23:34 海岛Blog 阅读(116) 评论(0) 推荐(0) 编辑

Project Euler Problem 2: Even Fibonacci numbers

摘要: Even Fibonacci numbersProblem 2Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with... 阅读全文

posted @ 2017-03-17 23:34 海岛Blog 阅读(128) 评论(0) 推荐(0) 编辑

Project Euler Problem 1: Multiples of 3 and 5

摘要: Multiples of 3 and 5Problem 1If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum o... 阅读全文

posted @ 2017-03-17 22:21 海岛Blog 阅读(120) 评论(0) 推荐(0) 编辑

Project Euler Problem 1: Multiples of 3 and 5

摘要: Multiples of 3 and 5Problem 1If we list all the natural numbers below 10 that are multiples of 3 or 5, we get 3, 5, 6 and 9. The sum o... 阅读全文

posted @ 2017-03-17 22:21 海岛Blog 阅读(102) 评论(0) 推荐(0) 编辑

上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 57 下一页

导航