結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー Rin
提出日時 2015-09-05 11:27:21
言語 Scheme
(Gauche-0.9.15)
結果
TLE  
実行時間 -
コード長 243 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-19 03:48:16
合計ジャッジ時間 4,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 2 TLE * 1 -- * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

(define (System.out.println x)
  (begin
    (display x)
    (newline)
  )
)

(let (
      (N (sort (string->list (number->string (read))) (lambda (x y) (> (char->integer x) (char->integer y)))))
     )
  (System.out.println (list->string N))
)
0