結果

問題 No.39 桁の数字を入れ替え
ユーザー htensaihtensai
提出日時 2019-12-07 10:03:42
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 41,464 KB
最終ジャッジ日時 2024-12-24 16:18:16
合計ジャッジ時間 6,034 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
40,964 KB
testcase_01 AC 139 ms
41,164 KB
testcase_02 AC 143 ms
41,056 KB
testcase_03 AC 133 ms
41,336 KB
testcase_04 AC 137 ms
41,164 KB
testcase_05 AC 130 ms
40,732 KB
testcase_06 AC 122 ms
39,852 KB
testcase_07 AC 134 ms
40,768 KB
testcase_08 AC 133 ms
41,176 KB
testcase_09 AC 138 ms
41,464 KB
testcase_10 AC 135 ms
41,036 KB
testcase_11 AC 139 ms
41,268 KB
testcase_12 AC 137 ms
41,120 KB
testcase_13 AC 137 ms
41,316 KB
testcase_14 AC 140 ms
41,044 KB
testcase_15 AC 145 ms
41,244 KB
testcase_16 AC 137 ms
40,964 KB
testcase_17 AC 139 ms
41,164 KB
testcase_18 AC 127 ms
40,164 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