結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | ontama_12 |
提出日時 | 2016-09-28 16:55:16 |
言語 | JavaScript (node v21.7.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 447 bytes |
コンパイル時間 | 30 ms |
コンパイル使用メモリ | 6,688 KB |
実行使用メモリ | 46,592 KB |
最終ジャッジ日時 | 2024-10-12 23:53:24 |
合計ジャッジ時間 | 812 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
ソースコード
/////////////////////////////No.256 桁の数字を入れ替え (2) //入力文字読み取り var inputall = require('fs').readFileSync('/dev/stdin', 'utf8'); var input_number = inputall.split("").map(Number) //入力文字を数値が大きい順にソート input_number.sort(function (a, b) { if (a < b) return 1; if (a > b) return -1; return 0; }); console.log(input_number.join(""))