結果
問題 | No.256 桁の数字を入れ替え (2) |
ユーザー | kenji_shioya |
提出日時 | 2016-06-05 16:45:56 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,208 ms / 2,000 ms |
コード長 | 513 bytes |
コンパイル時間 | 4,085 ms |
コンパイル使用メモリ | 87,532 KB |
実行使用メモリ | 56,600 KB |
最終ジャッジ日時 | 2024-10-08 15:56:18 |
合計ジャッジ時間 | 7,051 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 123 ms
41,268 KB |
testcase_01 | AC | 124 ms
41,236 KB |
testcase_02 | AC | 1,187 ms
56,600 KB |
testcase_03 | AC | 1,208 ms
55,248 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(""); Integer[] nums = new Integer[array.length]; for (int i = 0; i < array.length; i++){ nums[i] = Integer.valueOf(array[i]); } Arrays.sort(nums, Comparator.reverseOrder()); str = ""; for (int i = 0; i < nums.length; i++){ str += nums[i]; } System.out.println(str); } }