結果

問題 No.39 桁の数字を入れ替え
ユーザー htensaihtensai
提出日時 2019-12-07 10:03:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 1,951 ms
コンパイル使用メモリ 73,572 KB
実行使用メモリ 41,016 KB
最終ジャッジ日時 2024-06-06 21:45:47
合計ジャッジ時間 4,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,848 KB
testcase_01 AC 115 ms
40,680 KB
testcase_02 AC 115 ms
40,616 KB
testcase_03 AC 118 ms
40,616 KB
testcase_04 AC 116 ms
40,892 KB
testcase_05 AC 112 ms
40,880 KB
testcase_06 AC 115 ms
40,472 KB
testcase_07 AC 118 ms
41,016 KB
testcase_08 AC 117 ms
40,928 KB
testcase_09 AC 99 ms
39,328 KB
testcase_10 AC 115 ms
40,908 KB
testcase_11 AC 121 ms
40,852 KB
testcase_12 AC 119 ms
40,540 KB
testcase_13 AC 113 ms
41,004 KB
testcase_14 AC 119 ms
40,848 KB
testcase_15 AC 116 ms
40,920 KB
testcase_16 AC 105 ms
39,624 KB
testcase_17 AC 126 ms
40,680 KB
testcase_18 AC 116 ms
40,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		for (int j = 9; j > 0; j--) {
		    boolean hasFinish = false;
    		int maxIdx = 0;
    		for (int i = 0; i < arr.length; i++) {
    		    if (j == arr[i] - '0') {
    		        maxIdx = i;
    		    }
    		}
    		if (maxIdx == 0) {
    		    continue;
    		}
    		for (int i = 0; i < maxIdx; i++) {
    		    if (arr[i] - '0' < j) {
    		        char tmp = arr[i];
    		        arr[i] = arr[maxIdx];
    		        arr[maxIdx] = tmp;
    		        hasFinish = true;
    		        break;
    		    }
    		}
    		if (hasFinish) {
    		    break;
    		}
		}
		System.out.println(arr);
   }
}

0