結果

問題 No.3010 Print inside /bin
ユーザー gigurururugigurururu
提出日時 2015-05-04 23:15:52
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 2 ms / 1,500 ms
コード長 173 bytes
コンパイル時間 1,778 ms
コンパイル使用メモリ 123,056 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-06-12 02:40:26
合計ジャッジ時間 2,221 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.file, std.algorithm;

void main() {
  writeln(array(dirEntries("/bin", SpanMode.shallow).map!(x=>x.replace("/bin/",""))).sort.join("\n"));
}
0