結果

問題 No.3010 Print inside /bin
ユーザー gigurururugigurururu
提出日時 2015-05-05 23:34:55
言語 D
(dmd 2.107.1)
結果
AC  
実行時間 3 ms / 1,500 ms
コード長 167 bytes
コンパイル時間 910 ms
コンパイル使用メモリ 107,708 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-09-02 20:17:34
合計ジャッジ時間 1,426 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

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

ソースコード

diff #

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

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