結果

問題 No.5 数字のブロック
ユーザー jugemjugemjugemjugemjugemjugem
提出日時 2017-10-28 21:24:21
言語 Haskell
(9.10.1)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 10,499 ms
コンパイル使用メモリ 174,976 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-11-22 04:25:17
合計ジャッジ時間 12,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 27 WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

import Control.Monad
import Control.Applicative
import Data.List

main = do
  l <- readLn
  n <- readLn
  w <- map read . words <$> getLine
  -- [w] <- map read . words <$> getLine

  putStrLn . show $ solve l n w

solve :: Int -> Int -> [Int] -> Int
solve l n w = length . foldr (\x acc -> if x + sum acc  < l then x:acc else acc) [] . reverse $ sort w
0