結果

問題 No.5 数字のブロック
ユーザー jugemjugemjugemjugemjugemjugem
提出日時 2017-10-28 21:04:20
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 365 bytes
コンパイル時間 9,567 ms
コンパイル使用メモリ 173,952 KB
実行使用メモリ 22,308 KB
最終ジャッジ日時 2024-11-22 04:25:02
合計ジャッジ時間 135,942 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
16,292 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
15,268 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1 ms
11,648 KB
testcase_21 AC 1 ms
13,696 KB
testcase_22 AC 1 ms
13,184 KB
testcase_23 AC 1 ms
5,248 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 1 ms
5,248 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
10,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

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 0 w = 0
solve l n (x:xs)
  | l >= x = max (1 + (solve (l-x) (n-1) xs)) (solve l (n-1) xs)
  | otherwise = solve l (n-1) xs
0