結果

問題 No.39 桁の数字を入れ替え
ユーザー GrenacheGrenache
提出日時 2015-11-03 16:27:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,499 ms
コンパイル使用メモリ 74,912 KB
実行使用メモリ 41,628 KB
最終ジャッジ日時 2024-10-02 06:47:10
合計ジャッジ時間 6,537 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,412 KB
testcase_01 AC 128 ms
41,572 KB
testcase_02 AC 127 ms
41,168 KB
testcase_03 AC 127 ms
41,180 KB
testcase_04 AC 124 ms
41,628 KB
testcase_05 AC 128 ms
41,260 KB
testcase_06 AC 126 ms
41,396 KB
testcase_07 AC 113 ms
40,168 KB
testcase_08 AC 129 ms
41,192 KB
testcase_09 AC 128 ms
41,176 KB
testcase_10 AC 127 ms
40,908 KB
testcase_11 AC 125 ms
41,172 KB
testcase_12 AC 126 ms
40,972 KB
testcase_13 AC 128 ms
41,212 KB
testcase_14 AC 127 ms
41,068 KB
testcase_15 AC 127 ms
41,032 KB
testcase_16 AC 125 ms
41,032 KB
testcase_17 AC 125 ms
41,388 KB
testcase_18 AC 128 ms
41,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder39 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        char[] n = sc.next().toCharArray();

        int max = Integer.parseInt(new String(n));
        for (int i = 0; i < n.length; i++) {
        	for (int j = i + 1; j < n.length; j++) {
        		char tmp = n[i];
        		n[i] = n[j];
        		n[j] = tmp;
        		max = Math.max(max, Integer.parseInt(new String(n)));
        		 tmp = n[i];
        		n[i] = n[j];
        		n[j] = tmp;
        	}
        }

        System.out.println(max);
        
        sc.close();
    }
}
0