Problem 99
コンテンツ
http://projecteuler.net/index.php?section=problems&id=99
そのまま、log使って比較。
import Data.List import Data.Ord logPow x y = y*(log $ x) main = do f<-readFile "base_exp.txt" let xs = map (read.g) . lines $ f ::[[Double]] ans = maximumBy (comparing $ foldl1 logPow)$xs print.findIndex (==ans) $ []:xs where g x = "["++ x ++"]"
作成者 Toru Mano
最終更新時刻 2023-01-01 (c70d5a1)