結果

問題 No.39 桁の数字を入れ替え
ユーザー kano_townkano_town
提出日時 2014-11-21 19:29:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 560 bytes
コンパイル時間 3,431 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-02 05:57:57
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,100 KB
testcase_01 AC 121 ms
41,280 KB
testcase_02 AC 123 ms
41,160 KB
testcase_03 AC 123 ms
41,268 KB
testcase_04 AC 121 ms
41,152 KB
testcase_05 AC 123 ms
41,640 KB
testcase_06 AC 124 ms
41,252 KB
testcase_07 AC 127 ms
41,216 KB
testcase_08 AC 123 ms
41,184 KB
testcase_09 AC 125 ms
41,032 KB
testcase_10 AC 109 ms
41,072 KB
testcase_11 AC 120 ms
40,884 KB
testcase_12 AC 125 ms
41,332 KB
testcase_13 AC 123 ms
41,244 KB
testcase_14 AC 123 ms
41,000 KB
testcase_15 AC 124 ms
41,012 KB
testcase_16 AC 124 ms
41,456 KB
testcase_17 AC 123 ms
41,456 KB
testcase_18 AC 125 ms
41,080 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 = Integer.parseInt(String.valueOf(c));
		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