結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー RinRin
提出日時 2015-09-05 11:27:21
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 243 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 5,332 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2023-09-26 08:46:43
合計ジャッジ時間 5,095 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
13,696 KB
testcase_01 AC 18 ms
11,588 KB
testcase_02 TLE -
testcase_03 -- -
権限があれば一括ダウンロードができます

ソースコード

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