結果

問題 No.5 数字のブロック
ユーザー karrym_
提出日時 2015-06-27 21:14:49
言語 Haskell
(9.10.1)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 316 bytes
コンパイル時間 8,611 ms
コンパイル使用メモリ 175,812 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-11-17 22:53:10
合計ジャッジ時間 2,501 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

module Main where

import Data.List

solve :: [Int] -> Int -> Int
solve [] _ = 0
solve (x:xs) y | y < x = 0
               | otherwise = 1 + solve xs (y - x)

main :: IO ()
main = do
        l <- fmap read getLine
        _ <- getLine
        ws <- fmap (map read . words) getLine
        print $ solve (sort ws) l
0