結果

問題 No.256 桁の数字を入れ替え (2)
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2016-01-22 22:13:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 53,608 KB
最終ジャッジ日時 2024-09-21 15:02:02
合計ジャッジ時間 3,719 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
40,008 KB
testcase_01 AC 113 ms
41,204 KB
testcase_02 AC 632 ms
53,540 KB
testcase_03 AC 559 ms
53,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		String N = sc.next();
		
		char[] charN = N.toCharArray();
		
		Arrays.sort(charN);
		
		for(int i = charN.length - 1; i >= 0; i--) {
			System.out.print(charN[i]);
		}
		
		System.out.println();
	}
}
0