結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー yusakayusaka
提出日時 2015-09-22 13:51:02
言語 Scheme
(Gauche-0.9.14)
結果
AC  
実行時間 310 ms / 2,000 ms
コード長 114 bytes
コンパイル時間 43 ms
コンパイル使用メモリ 5,220 KB
実行使用メモリ 20,404 KB
最終ジャッジ日時 2023-09-26 14:23:16
合計ジャッジ時間 1,213 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
11,640 KB
testcase_01 AC 18 ms
11,748 KB
testcase_02 AC 308 ms
20,404 KB
testcase_03 AC 310 ms
20,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env gosh
(let ((n (read-line)))
  (display (list->string (sort (string->list n) char>?)))
  (newline))
0