結果

問題 No.39 桁の数字を入れ替え
ユーザー rn4rurn4ru
提出日時 2016-04-13 04:25:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 2,383 ms
コンパイル使用メモリ 77,600 KB
実行使用メモリ 41,764 KB
最終ジャッジ日時 2024-10-02 06:55:02
合計ジャッジ時間 5,376 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,692 KB
testcase_01 AC 127 ms
41,160 KB
testcase_02 AC 126 ms
41,352 KB
testcase_03 AC 130 ms
41,044 KB
testcase_04 AC 124 ms
41,452 KB
testcase_05 AC 124 ms
41,208 KB
testcase_06 AC 122 ms
41,764 KB
testcase_07 AC 126 ms
41,256 KB
testcase_08 AC 125 ms
41,540 KB
testcase_09 AC 121 ms
41,640 KB
testcase_10 AC 125 ms
41,052 KB
testcase_11 AC 120 ms
41,296 KB
testcase_12 AC 122 ms
41,180 KB
testcase_13 AC 122 ms
41,320 KB
testcase_14 AC 125 ms
41,376 KB
testcase_15 AC 124 ms
41,244 KB
testcase_16 AC 129 ms
41,272 KB
testcase_17 AC 124 ms
41,312 KB
testcase_18 AC 127 ms
41,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner scanner = new Scanner(System.in);
		char[] c = scanner.next().toCharArray();

		for (int i = 0; i < c.length - 1; i++) {
			int max = -1;
			int index = 0;
			for (int j = i; j < c.length; j++) {
				if (max <= c[j]) {
					max = c[j];
					index = j;
				}
			}
			if (c[i] < max) {
				char temp = c[i];
				c[i] = c[index];
				c[index] = temp;
				break;
			}
		}

		System.out.println(String.valueOf(c));
	}

}
0