結果
問題 | No.3010 Print inside /bin |
ユーザー | はむ吉🐹 |
提出日時 | 2016-05-28 15:54:31 |
言語 | Haskell (9.8.2) |
結果 |
CE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 197 bytes |
コンパイル時間 | 604 ms |
コンパイル使用メモリ | 149,760 KB |
最終ジャッジ日時 | 2024-11-14 19:44:54 |
合計ジャッジ時間 | 1,073 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、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:2:1: error: [GHC-87110] Could not load module ‘System.Directory’. It is a member of the hidden package ‘directory-1.3.8.1’. Use -v to see a list of the files searched for. | 2 | import System.Directory (getDirectoryContents) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ソースコード
import Data.List (isPrefixOf, sort) import System.Directory (getDirectoryContents) main :: IO () main = putStr . unlines . sort . filter (not . isPrefixOf ".") =<< getDirectoryContents "/bin"