結果
問題 |
No.5 数字のブロック
|
ユーザー |
![]() |
提出日時 | 2017-10-28 21:25:25 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 354 bytes |
コンパイル時間 | 4,525 ms |
コンパイル使用メモリ | 176,256 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-11-18 11:48:23 |
合計ジャッジ時間 | 2,859 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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
ソースコード
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