結果

問題 No.39 桁の数字を入れ替え
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-18 15:52:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 531 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 74,900 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-11-06 13:04:10
合計ジャッジ時間 6,237 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,932 KB
testcase_01 AC 135 ms
53,840 KB
testcase_02 AC 128 ms
53,984 KB
testcase_03 AC 128 ms
53,892 KB
testcase_04 AC 131 ms
54,056 KB
testcase_05 AC 129 ms
53,900 KB
testcase_06 AC 128 ms
54,104 KB
testcase_07 AC 130 ms
54,060 KB
testcase_08 AC 130 ms
53,892 KB
testcase_09 AC 129 ms
53,908 KB
testcase_10 AC 129 ms
53,760 KB
testcase_11 AC 132 ms
53,900 KB
testcase_12 AC 129 ms
53,912 KB
testcase_13 AC 129 ms
53,760 KB
testcase_14 AC 132 ms
53,884 KB
testcase_15 AC 130 ms
53,988 KB
testcase_16 AC 126 ms
53,968 KB
testcase_17 AC 127 ms
53,868 KB
testcase_18 AC 129 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] s = sc.next().toCharArray();
		int n = s.length;
		int max = Integer.valueOf(String.valueOf(s));
		for(int i=0;i<n;i++) {
			for(int j=i+1;j<n;j++) {
				swap(s, i, j);
				max = Math.max(max,Integer.valueOf(String.valueOf(s)));
				swap(s, i, j);
			}
		}
		System.out.println(max);
	}

	public static void swap(char[] a,int i,int j) {
		char temp = a[i];
		a[i] = a[j];
		a[j] = temp;
	}

}
0