結果

問題 No.8010 Print inside /bin
ユーザー gigurururu
提出日時 2015-05-04 23:15:52
言語 D
(dmd 2.109.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

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