結果

問題 No.8010 Print inside /bin
ユーザー gigurururu
提出日時 2015-05-05 00:32:06
言語 Nim
(2.2.0)
結果
AC  
実行時間 6 ms / 1,500 ms
コード長 132 bytes
コンパイル時間 3,305 ms
コンパイル使用メモリ 80,132 KB
実行使用メモリ 6,816 KB
最終ジャッジ日時 2024-06-29 01:57:08
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import os,sequtils,algorithm

var v = toSeq(walkFiles("/bin/*"))

sort(v,system.cmp[string])

for n in v:
    n.extractFilename.echo
0