結果

問題 No.3010 Print inside /bin
ユーザー gigurururugigurururu
提出日時 2015-05-04 21:51:49
言語 Haskell
(9.8.2)
結果
CE  
(最新)
AC  
(最初)
実行時間 -
コード長 113 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 149,632 KB
最終ジャッジ日時 2024-07-05 19:01:43
合計ジャッジ時間 741 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、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 ‘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.
  |
1 | import System.Directory
  | ^^^^^^^^^^^^^^^^^^^^^^^

ソースコード

diff #

import System.Directory
import Data.List

main = putStr . unlines . drop 2 . sort =<< getDirectoryContents "/bin"
0