結果

問題 No.39 桁の数字を入れ替え
ユーザー tentententen
提出日時 2020-11-17 08:57:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 41,416 KB
最終ジャッジ日時 2024-07-23 01:55:31
合計ジャッジ時間 5,436 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,036 KB
testcase_01 AC 122 ms
41,252 KB
testcase_02 AC 124 ms
40,928 KB
testcase_03 AC 126 ms
41,128 KB
testcase_04 AC 124 ms
40,988 KB
testcase_05 AC 127 ms
41,416 KB
testcase_06 AC 124 ms
40,924 KB
testcase_07 AC 122 ms
40,968 KB
testcase_08 AC 120 ms
41,176 KB
testcase_09 AC 123 ms
41,000 KB
testcase_10 AC 125 ms
41,048 KB
testcase_11 AC 124 ms
41,088 KB
testcase_12 AC 126 ms
41,068 KB
testcase_13 AC 127 ms
41,376 KB
testcase_14 AC 125 ms
41,372 KB
testcase_15 AC 125 ms
40,792 KB
testcase_16 AC 124 ms
40,888 KB
testcase_17 AC 126 ms
41,264 KB
testcase_18 AC 125 ms
41,248 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 i = 0; i < arr.length - 1; i++) {
            int max = arr[i];
            int idx = i;
            for (int j = i + 1; j < arr.length; j++) {
                if (max <= arr[j]) {
                    idx = j;
                    max = arr[j];
                }
            }
            if (arr[i] < max) {
                char tmp = arr[idx];
                arr[idx] = arr[i];
                arr[i] = tmp;
                break;
            }
        }
        System.out.println(arr);
    }
}
0