結果

問題 No.39 桁の数字を入れ替え
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-05 00:18:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,068 bytes
コンパイル時間 4,051 ms
コンパイル使用メモリ 78,292 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-10-02 06:17:52
合計ジャッジ時間 7,328 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,384 KB
testcase_01 AC 130 ms
41,844 KB
testcase_02 AC 128 ms
41,460 KB
testcase_03 AC 118 ms
40,320 KB
testcase_04 AC 130 ms
41,052 KB
testcase_05 AC 130 ms
41,696 KB
testcase_06 AC 132 ms
41,260 KB
testcase_07 AC 131 ms
41,288 KB
testcase_08 AC 134 ms
41,428 KB
testcase_09 AC 133 ms
41,280 KB
testcase_10 AC 117 ms
40,436 KB
testcase_11 AC 131 ms
41,516 KB
testcase_12 AC 134 ms
41,232 KB
testcase_13 AC 130 ms
41,172 KB
testcase_14 AC 132 ms
41,476 KB
testcase_15 AC 132 ms
41,268 KB
testcase_16 AC 130 ms
41,444 KB
testcase_17 AC 131 ms
41,568 KB
testcase_18 AC 132 ms
41,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.39 桁の数字を入れ替え

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No39 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        char[] cs = String.valueOf(n).toCharArray();
        int max = n;
        for (int i=0; i<cs.length; i++) {
            for (int j=i+1; j<cs.length; j++) {
                char t = cs[i]; cs[i] = cs[j]; cs[j] = t;
                max = max(max,Integer.parseInt(String.valueOf(cs)));
                t = cs[i]; cs[i] = cs[j]; cs[j] = t;
            }
        }
        out.println(max);
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0