結果

問題 No.256 桁の数字を入れ替え (2)
コンテスト
ユーザー kuuso1
提出日時 2016-08-18 05:37:26
言語 F#
(F# 10.0)
コンパイル:
fsharp_c _filename_
実行:
/usr/bin/dotnet_wrap
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 210 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 5,111 ms
コンパイル使用メモリ 213,556 KB
実行使用メモリ 35,528 KB
最終ジャッジ日時 2026-05-08 02:42:00
合計ジャッジ時間 6,118 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (165 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net10.0/main.dll
  main -> /home/judge/data/code/bin/Release/net10.0/publish/

ソースコード

diff #
raw source code

open System
type Sol() =
    member this.Solve() = 
        let S = stdin.ReadLine() |> Seq.sort |> Seq.rev |> Seq.toArray
        Console.WriteLine(new String(S));
        
let mySol = new Sol()
mySol.Solve()
0