結果

問題 No.39 桁の数字を入れ替え
ユーザー samplelpmassamplelpmas
提出日時 2017-01-31 13:48:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 857 bytes
コンパイル時間 2,393 ms
コンパイル使用メモリ 74,916 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-10-02 07:16:35
合計ジャッジ時間 5,653 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,180 KB
testcase_01 AC 136 ms
40,920 KB
testcase_02 AC 136 ms
41,416 KB
testcase_03 AC 136 ms
41,232 KB
testcase_04 AC 135 ms
41,436 KB
testcase_05 AC 135 ms
40,912 KB
testcase_06 AC 136 ms
41,360 KB
testcase_07 AC 136 ms
41,244 KB
testcase_08 AC 138 ms
41,512 KB
testcase_09 AC 138 ms
41,140 KB
testcase_10 AC 135 ms
40,980 KB
testcase_11 AC 136 ms
41,080 KB
testcase_12 AC 133 ms
41,104 KB
testcase_13 AC 133 ms
41,308 KB
testcase_14 AC 136 ms
41,460 KB
testcase_15 AC 136 ms
41,056 KB
testcase_16 AC 136 ms
41,068 KB
testcase_17 AC 120 ms
40,176 KB
testcase_18 AC 135 ms
41,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int inputNumber = sc.nextInt();

        char[] inputCharArray = String.valueOf(inputNumber).toCharArray();

        int max = inputNumber;

        for (int i = 0; i < inputCharArray.length; i++) {

            for (int j = i + 1; j < inputCharArray.length; j++) {

                char temp = inputCharArray[i];
                inputCharArray[i] = inputCharArray[j];
                inputCharArray[j] = temp;

                max = Math.max(max, Integer.parseInt(String.valueOf(inputCharArray)));

                temp = inputCharArray[i];
                inputCharArray[i] = inputCharArray[j];
                inputCharArray[j] = temp;

            }

        }

        System.out.println(max);

    }

}
0