結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー RinRin
提出日時 2015-09-05 11:27:21
言語 Scheme
(Gauche-0.9.14)
結果
TLE  
実行時間 -
コード長 243 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 5,120 KB
実行使用メモリ 16,000 KB
最終ジャッジ日時 2024-07-19 03:48:16
合計ジャッジ時間 4,518 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
16,000 KB
testcase_01 AC 22 ms
16,000 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