結果

問題 No.39 桁の数字を入れ替え
ユーザー jp_stejp_ste
提出日時 2016-03-08 13:56:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 729 bytes
コンパイル時間 2,395 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-09-24 13:47:45
合計ジャッジ時間 5,701 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
53,900 KB
testcase_01 AC 123 ms
54,100 KB
testcase_02 AC 122 ms
54,164 KB
testcase_03 AC 127 ms
53,872 KB
testcase_04 AC 123 ms
53,764 KB
testcase_05 AC 125 ms
54,112 KB
testcase_06 AC 126 ms
54,104 KB
testcase_07 AC 121 ms
54,032 KB
testcase_08 WA -
testcase_09 AC 125 ms
54,176 KB
testcase_10 AC 124 ms
54,088 KB
testcase_11 AC 127 ms
54,160 KB
testcase_12 AC 125 ms
54,104 KB
testcase_13 AC 126 ms
54,040 KB
testcase_14 AC 124 ms
54,080 KB
testcase_15 AC 112 ms
53,028 KB
testcase_16 AC 123 ms
54,128 KB
testcase_17 AC 123 ms
54,124 KB
testcase_18 AC 124 ms
54,016 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 = 0;
            
            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