結果
問題 | No.52 よくある文字列の問題 |
ユーザー | Iruyan_Zak |
提出日時 | 2017-07-12 21:27:35 |
言語 | Haskell (9.8.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 372 bytes |
コンパイル時間 | 184 ms |
コンパイル使用メモリ | 152,824 KB |
最終ジャッジ日時 | 2024-11-14 20:06:44 |
合計ジャッジ時間 | 584 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、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:1: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. | 1 | import qualified Data.Set as S | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ソースコード
import qualified Data.Set as S main :: IO () main = interact $ show . S.size . solve . tail . reverse solve :: String -> S.Set String solve s = solve' ("", s) where solve' (str, "") = S.singleton str solve' (str, rest) = let rest' = reverse rest in S.union (solve' (head rest:str, tail rest)) (solve' (head rest':str, tail rest'))