結果

問題 No.39 桁の数字を入れ替え
ユーザー shinwisteriashinwisteria
提出日時 2017-04-01 10:05:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,828 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 41,500 KB
最終ジャッジ日時 2024-10-02 07:19:07
合計ジャッジ時間 6,753 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,280 KB
testcase_01 AC 128 ms
41,184 KB
testcase_02 AC 129 ms
41,236 KB
testcase_03 AC 128 ms
41,500 KB
testcase_04 AC 128 ms
41,376 KB
testcase_05 AC 128 ms
40,940 KB
testcase_06 AC 127 ms
41,164 KB
testcase_07 AC 127 ms
41,116 KB
testcase_08 AC 126 ms
40,972 KB
testcase_09 AC 112 ms
41,096 KB
testcase_10 AC 129 ms
41,232 KB
testcase_11 AC 127 ms
40,940 KB
testcase_12 AC 126 ms
41,260 KB
testcase_13 AC 128 ms
41,368 KB
testcase_14 AC 128 ms
41,196 KB
testcase_15 AC 127 ms
41,372 KB
testcase_16 AC 116 ms
39,960 KB
testcase_17 AC 126 ms
41,336 KB
testcase_18 AC 128 ms
40,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Ketairekae {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		StringBuilder str = new StringBuilder(s.nextLine());
		s.close();
		boolean tof = false;
		for(int j = 0;j < str.length()-1;j++){
			for(int i = 9;i > Integer.parseInt(str.substring(j, j+1));i--){
				String I = Integer.toString(i);
				if(str.lastIndexOf(I) > j){
					int k = str.lastIndexOf(I);
					char keep = str.charAt(k);
					str.setCharAt(k, str.charAt(j));
					str.setCharAt(j, keep);
					tof = true;
					break;
				}
			}
			if(tof){
				break;
			}
		}
		System.out.println(str);

	}

}
0