結果

問題 No.39 桁の数字を入れ替え
ユーザー atkrymatkrym
提出日時 2016-11-07 19:47:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 678 bytes
コンパイル時間 2,100 ms
コンパイル使用メモリ 74,620 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-02 07:14:19
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,320 KB
testcase_01 AC 119 ms
41,196 KB
testcase_02 AC 121 ms
41,504 KB
testcase_03 AC 106 ms
40,004 KB
testcase_04 AC 123 ms
41,224 KB
testcase_05 AC 122 ms
41,280 KB
testcase_06 AC 118 ms
41,004 KB
testcase_07 AC 120 ms
41,148 KB
testcase_08 AC 125 ms
41,164 KB
testcase_09 AC 121 ms
41,304 KB
testcase_10 AC 123 ms
41,164 KB
testcase_11 AC 121 ms
41,124 KB
testcase_12 AC 115 ms
41,044 KB
testcase_13 AC 106 ms
40,164 KB
testcase_14 AC 119 ms
41,344 KB
testcase_15 AC 120 ms
41,488 KB
testcase_16 AC 119 ms
41,640 KB
testcase_17 AC 117 ms
41,228 KB
testcase_18 AC 120 ms
41,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        String s = sc.next();
        int len = s.length();
        int max = Integer.valueOf(s);
        for (int i = 0;i < len;i++) {
            for (int j = i+1;j < len;j++) {
                max = Math.max(max, num(s,i,j));
            }
        }
        System.out.println(max);
    }
    
    private static int num(String s, int i, int j) {
        char[] ary = s.toCharArray();
        char tmp = ary[i];
        ary[i] = ary[j];
        ary[j] = tmp;
        return Integer.valueOf(new String(ary));
    }
}
0