結果

問題 No.39 桁の数字を入れ替え
ユーザー bambambambam
提出日時 2019-08-22 14:05:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 658 bytes
コンパイル時間 2,008 ms
コンパイル使用メモリ 75,400 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-10-12 08:57:01
合計ジャッジ時間 5,354 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
53,872 KB
testcase_01 AC 112 ms
52,708 KB
testcase_02 AC 125 ms
53,968 KB
testcase_03 AC 115 ms
52,908 KB
testcase_04 AC 126 ms
53,892 KB
testcase_05 AC 124 ms
53,976 KB
testcase_06 AC 123 ms
53,972 KB
testcase_07 AC 123 ms
53,868 KB
testcase_08 AC 124 ms
54,004 KB
testcase_09 AC 125 ms
53,736 KB
testcase_10 AC 122 ms
53,968 KB
testcase_11 AC 125 ms
54,008 KB
testcase_12 AC 126 ms
54,460 KB
testcase_13 AC 125 ms
54,004 KB
testcase_14 AC 127 ms
53,732 KB
testcase_15 AC 124 ms
54,024 KB
testcase_16 AC 126 ms
53,836 KB
testcase_17 AC 127 ms
54,376 KB
testcase_18 AC 126 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	static boolean memo[];
	static int ans, min;

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		StringBuilder sb = new StringBuilder();
		char[] n = sc.next().toCharArray();
		char tmp;
		int idx;
		for (int i = 0; i < n.length - 1; i++) {
			tmp = '0';
			idx = 0;
			for (int j = n.length - 1; j > i; j--) {
				if (n[i] < n[j]) {
					if (tmp < n[j]) {
						tmp = n[j];
						idx = j;
					}
				}
			}
			if (tmp != '0') {
				n[idx] = n[i];
				n[i] = tmp;
				break;
			}
		}
		for (int i = 0; i < n.length; i++) {
			sb.append(n[i]);
		}
		System.out.println(sb);
	}
}
0