結果

問題 No.39 桁の数字を入れ替え
ユーザー mobius_bkstmobius_bkst
提出日時 2015-05-03 15:14:59
言語 Java
(openjdk 23)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 1,003 bytes
コンパイル時間 3,458 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 37,316 KB
最終ジャッジ日時 2024-10-02 06:20:39
合計ジャッジ時間 5,070 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
37,300 KB
testcase_01 AC 52 ms
36,848 KB
testcase_02 AC 53 ms
36,660 KB
testcase_03 AC 53 ms
37,120 KB
testcase_04 AC 53 ms
36,788 KB
testcase_05 AC 52 ms
37,200 KB
testcase_06 AC 53 ms
36,984 KB
testcase_07 AC 52 ms
36,792 KB
testcase_08 AC 52 ms
37,300 KB
testcase_09 AC 51 ms
36,956 KB
testcase_10 AC 53 ms
36,784 KB
testcase_11 AC 53 ms
37,316 KB
testcase_12 AC 53 ms
37,300 KB
testcase_13 AC 53 ms
36,660 KB
testcase_14 AC 52 ms
36,672 KB
testcase_15 AC 51 ms
37,004 KB
testcase_16 AC 51 ms
37,300 KB
testcase_17 AC 52 ms
37,156 KB
testcase_18 AC 52 ms
36,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class No039 {

    public static void main(String[] args) {
        try {
            BufferedReader br = new BufferedReader(new InputStreamReader(
                    System.in));
            String S = br.readLine();
            int N = Integer.parseInt(S);
            int max = N;
            int Slength = S.length();
            char[] c;
            char tmp;
            int newN = 0;
            for (int j = 0; j < Slength; j++) {

                for (int i = j + 1; i < Slength; i++) {
                    c = S.toCharArray();
                    tmp = c[i];
                    c[i] = c[j];
                    c[j] = tmp;
                    newN = Integer.parseInt(String.copyValueOf(c));
                    max = Math.max(max, newN);
                }
            }
            System.out.println(max);
        } catch (Exception e) {
            System.err.println("Error:" + e.getMessage());
        }
    }

}
0