結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | kenji_shioya |
提出日時 | 2016-06-05 17:25:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 498 ms / 2,000 ms |
コード長 | 337 bytes |
コンパイル時間 | 4,194 ms |
コンパイル使用メモリ | 74,988 KB |
実行使用メモリ | 54,540 KB |
最終ジャッジ日時 | 2024-10-08 16:03:02 |
合計ジャッジ時間 | 5,463 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,068 KB |
testcase_01 | AC | 121 ms
40,760 KB |
testcase_02 | AC | 498 ms
54,204 KB |
testcase_03 | AC | 492 ms
54,540 KB |
ソースコード
import java.util.*; public class Exercise62{ public static void main (String[] args){ Scanner sc = new Scanner(System.in); String str = sc.next(); String[] array = str.split(""); Arrays.sort(array, Comparator.reverseOrder()); String sortedStr = String.join("",array); System.out.println(sortedStr); } }