結果
| 問題 |
No.5 数字のブロック
|
| コンテスト | |
| ユーザー |
karrym_
|
| 提出日時 | 2015-06-27 21:13:44 |
| 言語 | Haskell (9.10.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 299 bytes |
| コンパイル時間 | 5,530 ms |
| コンパイル使用メモリ | 174,400 KB |
| 実行使用メモリ | 10,240 KB |
| 最終ジャッジ日時 | 2024-07-07 20:08:05 |
| 合計ジャッジ時間 | 6,838 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 RE * 10 |
コンパイルメッセージ
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
ソースコード
module Main where
import Data.List
solve :: [Int] -> Int -> Int
solve (x:xs) y | y < x = 0
| otherwise = 1 + solve xs (y - x)
main :: IO ()
main = do
l <- read <$> getLine
_ <- getLine
ws <- (map read . words) <$> getLine
print $ solve (sort ws) l
karrym_