結果

問題 No.39 桁の数字を入れ替え
ユーザー jp_stejp_ste
提出日時 2016-03-08 13:58:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 1,991 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-10-02 06:53:49
合計ジャッジ時間 5,185 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,024 KB
testcase_01 AC 126 ms
54,176 KB
testcase_02 AC 125 ms
54,020 KB
testcase_03 AC 129 ms
54,064 KB
testcase_04 AC 129 ms
54,184 KB
testcase_05 AC 127 ms
53,832 KB
testcase_06 AC 127 ms
53,944 KB
testcase_07 AC 126 ms
54,072 KB
testcase_08 AC 129 ms
54,232 KB
testcase_09 AC 129 ms
54,204 KB
testcase_10 AC 127 ms
54,272 KB
testcase_11 AC 128 ms
54,076 KB
testcase_12 AC 129 ms
54,300 KB
testcase_13 AC 130 ms
54,132 KB
testcase_14 AC 131 ms
54,080 KB
testcase_15 AC 126 ms
54,032 KB
testcase_16 AC 112 ms
52,984 KB
testcase_17 AC 126 ms
54,096 KB
testcase_18 AC 126 ms
54,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            char tmp[] = scan.nextLine().toCharArray();
            int ans = Integer.parseInt(String.valueOf(tmp));
            
            for(int i=0; i<tmp.length-1; i++) {
                for(int j=i+1; j<tmp.length; j++) {
                    char left = tmp[i];
                    char right = tmp[j];
                    tmp[i] = right;
                    tmp[j] = left;
                    ans = Math.max(ans, Integer.parseInt(String.valueOf(tmp)));
                    tmp[i] = left;
                    tmp[j] = right;
                }
            }
            System.out.println(ans);
        }
    }
}
0