結果
問題 | No.430 文字列検索 |
ユーザー | aimy |
提出日時 | 2017-05-17 10:54:05 |
言語 | Haskell (9.8.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 443 bytes |
コンパイル時間 | 5,021 ms |
コンパイル使用メモリ | 148,608 KB |
最終ジャッジ日時 | 2024-11-10 00:15:28 |
合計ジャッジ時間 | 5,337 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) Main.hs:3:1: error: [GHC-87110] Could not load module ‘Data.Set’. It is a member of the hidden package ‘containers-0.6.8’. Use -v to see a list of the files searched for. | 3 | import qualified Data.Set as S | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ソースコード
import Data.List import qualified Data.ByteString.Char8 as B import qualified Data.Set as S main = do s <- B.getLine getLine cs <- B.lines <$> B.getContents print (searchString s cs) searchString s cs = sum (unfoldr check s) where cs' = S.fromList cs check s' | B.null s' = Nothing | otherwise = Just ((length . filter id . map (flip S.member cs')) sk', B.tail s') where sk' = [B.take k s' | k<-[1 .. min 10 (B.length s')]]