結果

問題 No.39 桁の数字を入れ替え
ユーザー htensaihtensai
提出日時 2019-12-07 09:54:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 1,873 ms
コンパイル使用メモリ 73,908 KB
実行使用メモリ 41,104 KB
最終ジャッジ日時 2024-06-06 21:37:03
合計ジャッジ時間 4,820 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
39,484 KB
testcase_01 AC 111 ms
40,020 KB
testcase_02 AC 116 ms
40,916 KB
testcase_03 AC 115 ms
40,744 KB
testcase_04 AC 114 ms
39,984 KB
testcase_05 AC 117 ms
40,472 KB
testcase_06 AC 118 ms
40,540 KB
testcase_07 AC 117 ms
41,104 KB
testcase_08 AC 106 ms
39,692 KB
testcase_09 AC 118 ms
40,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 116 ms
40,604 KB
testcase_15 AC 116 ms
40,848 KB
testcase_16 AC 121 ms
40,692 KB
testcase_17 AC 115 ms
40,508 KB
testcase_18 AC 117 ms
41,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		char[] arr = sc.next().toCharArray();
		int max = 0;
		int maxIdx = 0;
		for (int i = 0; i < arr.length; i++) {
		    if (max <= arr[i] - '0') {
		        max = arr[i] - '0';
		        maxIdx = i;
		    }
		}
		for (int i = 0; i < maxIdx; i++) {
		    if (arr[i] - '0' < max) {
		        char tmp = arr[i];
		        arr[i] = arr[maxIdx];
		        arr[maxIdx] = tmp;
		        break;
		    }
		}
		System.out.println(arr);
   }
}

0