結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 20:49:25
言語 Java
(openjdk 23)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 3,714 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 65,632 KB
最終ジャッジ日時 2024-11-29 04:05:16
合計ジャッジ時間 6,014 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,064 KB
testcase_01 AC 113 ms
54,096 KB
testcase_02 AC 615 ms
64,864 KB
testcase_03 AC 633 ms
65,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Arrays;
import java.util.Scanner;
public class Con256 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		String n = s.nextLine();
		s.close();

		int[] a = new int[n.length()];
		for(int i = 0;i < n.length();i++){
			a[i] = -1 * Integer.parseInt(n.substring(i, i+1));
		}
		Arrays.sort(a);
		for(int i = 0;i < n.length();i++){
			System.out.print(-1 * a[i]);
		}
		System.out.println();

	}

}
0