結果

問題 No.3010 Print inside /bin
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-21 10:33:56
言語 F#
(F# 4.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 136 bytes
コンパイル時間 15,092 ms
コンパイル使用メモリ 184,748 KB
実行使用メモリ 30,948 KB
最終ジャッジ日時 2024-04-25 11:07:13
合計ジャッジ時間 10,132 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (341 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

open System.IO

let () =
    let files = Directory.GetFiles("/bin")
    for file in files do Path.GetFileName file |> printfn "%s" done
0