結果

問題 No.39 桁の数字を入れ替え
ユーザー YamaKasaYamaKasa
提出日時 2018-06-19 00:06:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 683 bytes
コンパイル時間 2,386 ms
コンパイル使用メモリ 78,916 KB
実行使用メモリ 54,264 KB
最終ジャッジ日時 2024-06-30 17:07:28
合計ジャッジ時間 5,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,076 KB
testcase_01 AC 126 ms
54,000 KB
testcase_02 AC 126 ms
54,124 KB
testcase_03 AC 125 ms
54,000 KB
testcase_04 AC 126 ms
53,852 KB
testcase_05 AC 126 ms
54,196 KB
testcase_06 AC 127 ms
54,136 KB
testcase_07 AC 127 ms
54,000 KB
testcase_08 AC 125 ms
54,164 KB
testcase_09 AC 127 ms
54,072 KB
testcase_10 AC 124 ms
54,008 KB
testcase_11 AC 128 ms
54,264 KB
testcase_12 AC 126 ms
53,988 KB
testcase_13 AC 128 ms
53,968 KB
testcase_14 AC 126 ms
53,864 KB
testcase_15 AC 127 ms
53,704 KB
testcase_16 AC 128 ms
54,076 KB
testcase_17 AC 128 ms
54,180 KB
testcase_18 AC 127 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		String s = scan.next();
		scan.close();
		String []ary = s.split("");
		int max = Integer.parseInt(s);
		for(int i = 0; i < ary.length; i++) {
			for(int j = i + 1; j < ary.length; j++) {
				int t = swap(ary, i, j);
				if(max < t) {
					max = t;
				}
			}
		}
		System.out.println(max);
	}
	public static int swap(String []A, int i, int j) {
		String []B = new String[A.length];
		for(int k = 0; k < A.length; k++) {
			B[k] = A[k];
		}
		String t = B[j];
		B[j] = B[i];
		B[i] = t;
		int a = Integer.parseInt(String.join("", B));
		return a;
	}
}
0