結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー kuwakuwa
提出日時 2015-12-09 00:08:15
言語 Haskell
(9.8.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 971 bytes
コンパイル時間 4,317 ms
コンパイル使用メモリ 149,888 KB
最終ジャッジ日時 2023-12-16 08:22:47
合計ジャッジ時間 5,161 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。

コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:34:24: error:
    Ambiguous occurrence ‘BC.getLine’
    It could refer to
       either ‘BC.getLine’,
              imported qualified from ‘Data.ByteString’ at Main.hs:8:1-38
           or ‘BC.getLine’,
              imported qualified from ‘Data.ByteString.Char8’ at Main.hs:7:1-44
   |
34 | readInt = parseInt <$> BC.getLine
   |                        ^^^^^^^^^^

Main.hs:37:26: error:
    Ambiguous occurrence ‘BC.getLine’
    It could refer to
       either ‘BC.getLine’,
              imported qualified from ‘Data.ByteString’ at Main.hs:8:1-38
           or ‘BC.getLine’,
              imported qualified from ‘Data.ByteString.Char8’ at Main.hs:7:1-44
   |
37 | readInts = parseInts <$> BC.getLine
   |                          ^^^^^^^^^^

ソースコード

diff #

module Main where
import Control.Monad
import Control.Applicative
import Data.Maybe
import Data.List
import qualified Text.Printf
import qualified Data.ByteString.Char8 as BC
import qualified Data.ByteString as BC

------------------------------------------

main :: IO ()
main = do
    n <- readInt
    [a, b, c] <- readInts
    print $ solve a b c n

solve :: Int -> Int -> Int -> Int -> Int
solve a b c n = sum (map (div n) [a,b,c])
                - sum (map (div n) [a `lcm` b, b `lcm` c, c `lcm` a])
                + div n (a `lcm` b `lcm` c)

------------------------------------------

{- Int input -}

parseInt :: BC.ByteString -> Int
parseInt = fst . fromJust . BC.readInt

parseInts :: BC.ByteString -> [Int]
parseInts = map parseInt <$> BC.words

readInt :: IO Int
readInt = parseInt <$> BC.getLine

readInts :: IO [Int]
readInts = parseInts <$> BC.getLine

{- Double Formatting -}

doubleFormat :: Double -> String
doubleFormat = Text.Printf.printf "%.12f"
0