結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー shinwisteriashinwisteria
提出日時 2018-03-14 20:39:13
言語 Java
(openjdk 23)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 441 bytes
コンパイル時間 3,626 ms
コンパイル使用メモリ 80,840 KB
実行使用メモリ 46,676 KB
最終ジャッジ日時 2024-11-29 03:09:13
合計ジャッジ時間 6,345 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,180 KB
testcase_01 AC 130 ms
41,456 KB
testcase_02 AC 951 ms
46,628 KB
testcase_03 AC 944 ms
46,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
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[10];
		for(int i = 0;i < n.length();i++){
			a[Integer.parseInt(n.substring(i, i+1))]++;
		}
		n = "";
		for(int i = 9;i >= 0;i--){
			for(int j = 0;j < a[i];j++){
				n += Integer.toString(i);
			}
		}
		System.out.println(n);

	}

}
0