The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × 8 × 9 = 5832.

Find the thirteen adjacent digits in the 1000-digit number that have the greatest product. What is the value of this product?

譯文:

觀察著1000個數字,通過運算可得,最大的連續的四位數的乘機為5832,求出最大的連續的13位數的乘機?

=============================

第一次code:

 import java.util.ArrayList;
 import java.util.List;

 public class Main
 {
     public static void main(String[] args)
     {
         System.out.println(num(run()));
     }
     /*
     *  將1000個數放到一個字符串
     *  將字符串轉換成字符串數組
     *  計算每連續的13位數的乘機,並放置在Arraylist數組中
     *
     *  注意:乘機的類型為long,如果為int的話,數據結果會超出,導致計算結果出錯
     */
     public static List run()
     {
         String a="73167176531330624919225119674426574742355349194934"
                 +"96983520312774506326239578318016984801869478851843"
                 +"85861560789112949495459501737958331952853208805511"
                 +"12540698747158523863050715693290963295227443043557"
                 +"66896648950445244523161731856403098711121722383113"
                 +"62229893423380308135336276614282806444486645238749"
                 +"30358907296290491560440772390713810515859307960866"
                 +"70172427121883998797908792274921901699720888093776"
                 +"65727333001053367881220235421809751254540594752243"
                 +"52584907711670556013604839586446706324415722155397"
                 +"53697817977846174064955149290862569321978468622482"
                 +"83972241375657056057490261407972968652414535100474"
                 +"82166370484403199890008895243450658541227588666881"
                 +"16427171479924442928230863465674813919123162824586"
                 +"17866458359124566529476545682848912883142607690042"
                 +"24219022671055626321111109370544217506941658960408"
                 +"07198403850962455444362981230987879927244284909188"
                 +"84580156166097919133875499200524063689912560717606"
                 +"05886116467109405077541002256983155200055935729725"
                 +"71636269561882670428252483600823257530420752963450";
         char [] b = a.toCharArray();
         List<Long>list = new ArrayList<Long>();
         for(int i=0;i<b.length-13;i++)
         {
             list.add(Long.valueOf(String.valueOf(b[i]))*Long.valueOf(String.valueOf(b[i+1]))
                     *Long.valueOf(String.valueOf(b[i+2]))*Long.valueOf(String.valueOf(b[i+3]))
                     *Long.valueOf(String.valueOf(b[i+4]))*Long.valueOf(String.valueOf(b[i+5]))
                     *Long.valueOf(String.valueOf(b[i+6]))*Long.valueOf(String.valueOf(b[i+7]))
                     *Long.valueOf(String.valueOf(b[i+8]))*Long.valueOf(String.valueOf(b[i+9]))
                     *Long.valueOf(String.valueOf(b[i+10]))*Long.valueOf(String.valueOf(b[i+11]))
                     *Long.valueOf(String.valueOf(b[i+12])));
         }
         return list;
     }
     /*
     *  遍歷ArrayList數組
     *  比較輸出最大值
     */
     public static long num(List list)
     {
         long max=(Long)list.get(0);
         for(int i=0;i<list.size();i++)
         {
             if(max < (Long)list.get(i))
             {
                 max = (Long)list.get(i);
             }
         }
         return max;
     }
 }

Answer : 23514624000

時間效率: 5 毫秒。

projecteuler Problem 8 Largest product in a series的更多相关文章

  1. Problem 8: Largest product in a series

    先粘实现代码,以后需要再慢慢补充思路 s = ''' 73167176531330624919225119674426574742355349194934 9698352031277450632623 ...

  2. Largest product in a series

    这个我开始理解错了,算错了. 我以为是求连续5个数的最大值,结果,是连接5个数相乘的最大值. 英语不好,容易吃亏啊. Find the greatest product of five consecu ...

  3. 【Project Euler 8】Largest product in a series

    题目要求是: The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × ...

  4. Project Euler 8 Largest product in a series

    题意:寻找这 1000 个数中相邻 13 个数相乘积最大的值 思路:首先想到的是暴力,但是还可以利用之前记录过的数值,什么意思呢?即在计算 2 - 14 后,再计算 3 - 15 时完全可以利用之前计 ...

  5. Largest product from 3 integers

    https://github.com/Premiumlab/Python-for-Algorithms--Data-Structures--and-Interviews/blob/master/Moc ...

  6. Problem 4: Largest palindrome product

    A palindromic number reads the same both ways. The largest palindrome made from the product of two 2 ...

  7. R语言学习——欧拉计划(11)Largest product in a grid

    Problem 11 In the 20×20 grid below, four numbers along a diagonal line have been marked in red. 08 0 ...

  8. Largest product in a grid

    这个比前面的要复杂点,但找对了规律,还是可以的. 我逻辑思维不强,只好画图来数数列的下标了. 分四次计算,存入最大值. 左右一次,上下一次,左斜一次,右斜一次. In the 2020 grid be ...

  9. projecteuler----&gt;problem=8----Largest product in a series

    title: The four adjacent digits in the 1000-digit number that have the greatest product are 9 9 8 9 ...

随机推荐

  1. SQL2008无法启动,报错"17051

    解决办法: 第一步:进入SQL2008配置工具中的安装中心, 第二步:再进入维护界面,选择版本升级, 第三步:进入产品密钥,输入密钥 Developer: PTTFM-X467G-P7RH2-3Q6C ...

  2. MVC 3.0 Tree

    页面分左右两部分,左边是一个导航树,右边是局部页,点击树节点,异步刷新右边的内容.加颜色部分是知识点. @using VideoWeb.Models@model VideoWeb.Models.Cat ...

  3. 无法建立SSL连接

    在使用wget工具的过程中,当URL使用HTTPS协议时,经常出现如下错误:“无法建立SSL连接”. 这是因为wget在使用HTTPS协议时,默认会去验证网站的证书,而这个证书验证经常会失败.加上&q ...

  4. Python 基礎 - 字符編碼

    Python 解釋器在加載 .py 文件中的代碼時,會對內容進行編碼 (默認 ascill) ASCII (American Standard Code for Information Interch ...

  5. 网络数据包收发流程(四):协议栈之packet_type

    进入函数netif_receive_skb()后,skb正式开始协议栈之旅.先上图,协议栈大致过程如下所示:跟OSI七层模型不同,linux根据包结构对网络进行分层.比如,arp头和ip头都是紧跟在以 ...

  6. JSP EL表达式 与输入有关的内置对象

    与输入有关的隐含对象有两个param和paramValues,用来取得用户的请求参数.在使用EL之前可以使用如下代码取得用户的请求参数: request.getParameter(String nam ...

  7. popwindow设置背景半透明

    WindowManager.LayoutParams lp = getWindow().getAttributes(); lp.alpha = 0.5f; //0.0-1.0 getWindow(). ...

  8. squid ACL 大全

    Access Controls in Squid Contents Access Controls in Squid The Basics: How the parts fit together AC ...

  9. javaScript DOM JQuery AJAX

    http://www.cnblogs.com/wupeiqi/articles/5369773.html 一 JavaScript JavaScript是一门编程语言,浏览器内置了JavaScript ...

  10. powerdsigner Association Multiplicity

    这一篇來告诉一个不容易分辨的关系图式:Association(结合)的各种類型,除了了解它的涵义 外,也让各位可以看图說故事,知道它背后所要表达的意义. Association结合 Associati ...