結果

問題 No.39 桁の数字を入れ替え
ユーザー kano_townkano_town
提出日時 2014-11-21 19:28:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 3,732 ms
コンパイル使用メモリ 75,160 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-06-10 21:31:20
合計ジャッジ時間 5,875 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
39,900 KB
testcase_01 AC 98 ms
40,108 KB
testcase_02 AC 107 ms
40,936 KB
testcase_03 AC 92 ms
39,580 KB
testcase_04 AC 120 ms
41,204 KB
testcase_05 AC 101 ms
39,964 KB
testcase_06 AC 114 ms
41,308 KB
testcase_07 AC 107 ms
41,164 KB
testcase_08 WA -
testcase_09 AC 105 ms
41,180 KB
testcase_10 AC 106 ms
41,192 KB
testcase_11 AC 91 ms
39,780 KB
testcase_12 AC 108 ms
41,192 KB
testcase_13 AC 104 ms
40,880 KB
testcase_14 AC 107 ms
41,172 KB
testcase_15 AC 107 ms
41,420 KB
testcase_16 AC 94 ms
40,188 KB
testcase_17 AC 102 ms
40,540 KB
testcase_18 AC 104 ms
40,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder39 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] c = sc.next().toCharArray();
		
		char buf;
		int max = -1;
		for (int i = 0; i < c.length - 1; i++) {
			for (int j = i + 1; j < c.length; j++) {
				buf = c[i];
				c[i] = c[j];
				c[j] = buf;

				max = Math.max(max, Integer.parseInt(String.valueOf(c)));
				
				buf = c[i];
				c[i] = c[j];
				c[j] = buf;

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